1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-02-12 16:12:18 -05:00
parent 3d2a53bdde
commit 420f0a5a6b
2 changed files with 5 additions and 5 deletions

View File

@@ -353,9 +353,9 @@ export class MenuMain {
label: this.i18nService.t('about'),
click: () => {
const aboutInformation = this.i18nService.t('version', app.getVersion()) +
'\nShell ' + process.versions['electron'] +
'\nRenderer ' + process.versions['chrome'] +
'\nNode ' + process.versions['node'] +
'\nShell ' + process.versions.electron +
'\nRenderer ' + process.versions.chrome +
'\nNode ' + process.versions.node +
'\nArchitecture ' + process.arch;
const result = dialog.showMessageBox(this.windowMain.win, {
title: 'Bitwarden',
@@ -369,7 +369,7 @@ export class MenuMain {
clipboard.writeText(aboutInformation);
}
},
}
},
]);
}