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

adjust device type enum names

This commit is contained in:
Kyle Spearrin
2018-07-09 09:06:45 -04:00
parent d5d13c7947
commit 76cac17377
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 8ac3450d9e...621a6d1524

View File

@@ -68,7 +68,7 @@ export class SettingsComponent implements OnInit {
}
async ngOnInit() {
this.showMinToTray = this.platformUtilsService.getDevice() === DeviceType.Windows;
this.showMinToTray = this.platformUtilsService.getDevice() === DeviceType.WindowsDesktop;
this.lockOption = await this.storageService.get<number>(ConstantsService.lockOptionKey);
this.disableFavicons = await this.storageService.get<boolean>(ConstantsService.disableFaviconKey);
this.enableMinToTray = await this.storageService.get<boolean>(ElectronConstants.enableMinimizeToTrayKey);