From f56a9146be3c521cb19c75d545dbf704540ab226 Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Fri, 8 Oct 2021 15:26:39 +0200 Subject: [PATCH] Open prompt for login in tab instead of popout --- src/background/runtime.background.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/background/runtime.background.ts b/src/background/runtime.background.ts index 3b9dfb263fa..5c0e799a92a 100644 --- a/src/background/runtime.background.ts +++ b/src/background/runtime.background.ts @@ -98,6 +98,7 @@ export default class RuntimeBackground { await this.main.openPopup(); break; case 'promptForLogin': + await BrowserApi.createNewTab('popup/index.html?uilocation=popout', true, true); break; case 'showDialogResolve': this.platformUtilsService.resolveDialogPromise(msg.dialogId, msg.confirmed);