diff --git a/jslib/angular/src/components/callout.component.html b/jslib/angular/src/components/callout.component.html index a049d5cb..55e9510c 100644 --- a/jslib/angular/src/components/callout.component.html +++ b/jslib/angular/src/components/callout.component.html @@ -12,10 +12,10 @@ {{ enforcedPolicyMessage }} diff --git a/jslib/common/src/enums/importOptions.ts b/jslib/common/src/enums/importOptions.ts index 6535b133..28181db4 100644 --- a/jslib/common/src/enums/importOptions.ts +++ b/jslib/common/src/enums/importOptions.ts @@ -70,5 +70,5 @@ export const regularImportOptions = [ ] as const; export type ImportType = - | typeof featuredImportOptions[number]["id"] - | typeof regularImportOptions[number]["id"]; + | (typeof featuredImportOptions)[number]["id"] + | (typeof regularImportOptions)[number]["id"]; diff --git a/src/app/tabs/dashboard.component.html b/src/app/tabs/dashboard.component.html index 362acbef..a08a6176 100644 --- a/src/app/tabs/dashboard.component.html +++ b/src/app/tabs/dashboard.component.html @@ -4,11 +4,11 @@

{{ "lastGroupSync" | i18n }}: - - {{ lastGroupSync | date: "medium" }} + {{ lastGroupSync | date : "medium" }}
{{ "lastUserSync" | i18n }}: - - {{ lastUserSync | date: "medium" }} + {{ lastUserSync | date : "medium" }}

{{ "syncStatus" | i18n }}: diff --git a/src/app/tabs/more.component.html b/src/app/tabs/more.component.html index a1d80ed2..b99fb4f8 100644 --- a/src/app/tabs/more.component.html +++ b/src/app/tabs/more.component.html @@ -6,7 +6,7 @@

{{ "bitwardenDirectoryConnector" | i18n }}
- {{ "version" | i18n: version }}
+ {{ "version" | i18n : version }}
© Bitwarden Inc. LLC 2015-{{ year }}