1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-03 00:53:23 +00:00

dialogs have a message title

This commit is contained in:
Kyle Spearrin
2018-02-16 14:20:43 -05:00
parent 1eaa104182
commit 54d2742604
2 changed files with 10 additions and 5 deletions

View File

@@ -140,7 +140,8 @@ export class DesktopPlatformUtilsService implements PlatformUtilsService {
const result = remote.dialog.showMessageBox(remote.getCurrentWindow(), {
type: type,
title: title,
message: text,
message: title,
detail: text,
buttons: buttons,
cancelId: buttons.length === 2 ? 1 : null,
defaultId: 0,