diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index b83256c0e4..38fcf3dbce 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -160,6 +160,11 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService return this.isChrome() || this.isOpera(); } + showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string) { + // TODO + return Promise.resolve(true); + } + private sidebarViewName(): string { if ((window as any).chrome.sidebarAction && this.isFirefox()) { return 'sidebar';