提示消息优化

This commit is contained in:
liaoxuezhi 2019-09-16 12:19:27 +08:00
parent e307948395
commit 99beaf830d

View File

@ -44,7 +44,7 @@ export const ServiceStore = iRendererStore
}
function updateMessage(msg?: string, error: boolean = false) {
self.msg = String(msg) || '';
self.msg = msg && String(msg) || '';
self.error = error;
}