Fix plugin modal/notifier

pull/4187/head
Chocobozzz 2021-06-14 13:44:17 +02:00
parent 367994c521
commit 0f6521fa6b
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 4 additions and 4 deletions

View File

@ -190,9 +190,9 @@ export class PluginService implements ClientHook {
},
notifier: {
info: (text: string, title?: string, timeout?: number) => this.notifier.info(text, title, timeout),
error: (text: string, title?: string, timeout?: number) => this.notifier.error(text, title, timeout),
success: (text: string, title?: string, timeout?: number) => this.notifier.success(text, title, timeout)
info: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.info(text, title, timeout)),
error: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.error(text, title, timeout)),
success: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.success(text, title, timeout))
},
showModal: (input: {
@ -202,7 +202,7 @@ export class PluginService implements ClientHook {
cancel?: { value: string, action?: () => void },
confirm?: { value: string, action?: () => void }
}) => {
this.customModal.show(input)
this.zone.run(() => this.customModal.show(input))
},
markdownRenderer: {