mirror of
https://github.com/bitwarden/web
synced 2025-12-11 22:03:21 +00:00
[chore] Update jslib (#1415)
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 6b4ed5fcce...e372bf242b
@@ -75,7 +75,7 @@ export function initFactory(
|
|||||||
|
|
||||||
const urls = process.env.URLS as Urls;
|
const urls = process.env.URLS as Urls;
|
||||||
urls.base ??= window.location.origin;
|
urls.base ??= window.location.origin;
|
||||||
environmentService.setUrls(urls, false);
|
environmentService.setUrls(urls);
|
||||||
|
|
||||||
setTimeout(() => notificationsService.init(), 3000);
|
setTimeout(() => notificationsService.init(), 3000);
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ export class OptionsComponent implements OnInit {
|
|||||||
disableIcons: boolean;
|
disableIcons: boolean;
|
||||||
enableGravatars: boolean;
|
enableGravatars: boolean;
|
||||||
enableFullWidth: boolean;
|
enableFullWidth: boolean;
|
||||||
theme: string = null;
|
theme: ThemeType = ThemeType.Light;
|
||||||
locale: string;
|
locale: string;
|
||||||
vaultTimeouts: { name: string; value: number }[];
|
vaultTimeouts: { name: string; value: number }[];
|
||||||
localeOptions: any[];
|
localeOptions: any[];
|
||||||
@@ -28,7 +28,7 @@ export class OptionsComponent implements OnInit {
|
|||||||
vaultTimeout: FormControl = new FormControl(null);
|
vaultTimeout: FormControl = new FormControl(null);
|
||||||
|
|
||||||
private startingLocale: string;
|
private startingLocale: string;
|
||||||
private startingTheme: string;
|
private startingTheme: ThemeType = ThemeType.Light;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private stateService: StateService,
|
private stateService: StateService,
|
||||||
|
|||||||
Reference in New Issue
Block a user