mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-28 12:35:40 +01:00
lint fixes
This commit is contained in:
parent
3d2a53bdde
commit
420f0a5a6b
@ -353,9 +353,9 @@ export class MenuMain {
|
|||||||
label: this.i18nService.t('about'),
|
label: this.i18nService.t('about'),
|
||||||
click: () => {
|
click: () => {
|
||||||
const aboutInformation = this.i18nService.t('version', app.getVersion()) +
|
const aboutInformation = this.i18nService.t('version', app.getVersion()) +
|
||||||
'\nShell ' + process.versions['electron'] +
|
'\nShell ' + process.versions.electron +
|
||||||
'\nRenderer ' + process.versions['chrome'] +
|
'\nRenderer ' + process.versions.chrome +
|
||||||
'\nNode ' + process.versions['node'] +
|
'\nNode ' + process.versions.node +
|
||||||
'\nArchitecture ' + process.arch;
|
'\nArchitecture ' + process.arch;
|
||||||
const result = dialog.showMessageBox(this.windowMain.win, {
|
const result = dialog.showMessageBox(this.windowMain.win, {
|
||||||
title: 'Bitwarden',
|
title: 'Bitwarden',
|
||||||
@ -369,7 +369,7 @@ export class MenuMain {
|
|||||||
clipboard.writeText(aboutInformation);
|
clipboard.writeText(aboutInformation);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { autoUpdater } from "electron-updater"
|
import { autoUpdater } from 'electron-updater';
|
||||||
|
|
||||||
const UpdaterCheckInitalDelay = 5 * 1000; // 5 seconds
|
const UpdaterCheckInitalDelay = 5 * 1000; // 5 seconds
|
||||||
const UpdaterCheckInterval = 12 * 60 * 60 * 1000; // 12 hours
|
const UpdaterCheckInterval = 12 * 60 * 60 * 1000; // 12 hours
|
||||||
|
Loading…
Reference in New Issue
Block a user