Merge pull request #2298 from bitwarden/Chore/UpdateJslib

[chore] Update jslib
This commit is contained in:
Addison Beck 2022-01-28 09:32:48 -05:00 committed by GitHub
commit 32e54eec7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 6b4ed5fcce58c21a9977d94ebb65f954d6766548
Subproject commit e372bf242b24f55c1142e33693ad2c801ab74c93

View File

@ -25,7 +25,7 @@ export class OptionsComponent implements OnInit {
dontShowCards = false;
dontShowIdentities = false;
showClearClipboard = true;
theme: string;
theme: ThemeType;
themeOptions: any[];
defaultUriMatch = UriMatchType.Domain;
uriMatchOptions: any[];
@ -42,7 +42,7 @@ export class OptionsComponent implements OnInit {
i18nService: I18nService
) {
this.themeOptions = [
{ name: i18nService.t("default"), value: null },
{ name: i18nService.t("default"), value: ThemeType.System },
{ name: i18nService.t("light"), value: ThemeType.Light },
{ name: i18nService.t("dark"), value: ThemeType.Dark },
{ name: "Nord", value: ThemeType.Nord },