1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

Add extra warnings about encrypted export

This commit is contained in:
Thomas Rittson
2021-03-05 07:06:02 +10:00
parent 70b9fc931f
commit 962678bd4e
2 changed files with 8 additions and 3 deletions

View File

@@ -148,10 +148,12 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
});
}
showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string) {
showDialog(body: string, title?: string, confirmText?: string, cancelText?: string, type?: string,
bodyIsHtml: boolean = false) {
const dialogId = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
this.messagingService.send('showDialog', {
text: text,
text: bodyIsHtml ? null : body,
html: bodyIsHtml ? body : null,
title: title,
confirmText: confirmText,
cancelText: cancelText,