1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-16 02:27:00 +02: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);
}
},
}
},
]);
}

View File

@ -1,4 +1,4 @@
import { autoUpdater } from "electron-updater"
import { autoUpdater } from 'electron-updater';
const UpdaterCheckInitalDelay = 5 * 1000; // 5 seconds
const UpdaterCheckInterval = 12 * 60 * 60 * 1000; // 12 hours