diff --git a/apps/web/src/app/auth/settings/account/change-avatar-dialog.component.html b/apps/web/src/app/auth/settings/account/change-avatar-dialog.component.html
index 05fff978b0c..34e9f734fc0 100644
--- a/apps/web/src/app/auth/settings/account/change-avatar-dialog.component.html
+++ b/apps/web/src/app/auth/settings/account/change-avatar-dialog.component.html
@@ -26,7 +26,7 @@
title="{{ 'customColor' | i18n }}"
[ngClass]="{
'!tw-outline-[3px] tw-outline-primary-600 hover:tw-outline-[3px] hover:tw-outline-primary-600':
- customColorSelected
+ customColorSelected,
}"
class="tw-relative tw-flex tw-h-24 tw-w-24 tw-cursor-pointer tw-place-content-center tw-content-center tw-justify-center tw-rounded-full tw-border tw-border-solid tw-border-secondary-600 tw-outline tw-outline-0 tw-outline-offset-1 hover:tw-outline-1 hover:tw-outline-primary-300 focus:tw-outline-2 focus:tw-outline-primary-600"
[style.background-color]="customColor$ | async"
diff --git a/apps/web/src/app/auth/trial-initiation/secrets-manager/secrets-manager-trial-paid-stepper.component.html b/apps/web/src/app/auth/trial-initiation/secrets-manager/secrets-manager-trial-paid-stepper.component.html
index b827dc98bf4..1acf4c32097 100644
--- a/apps/web/src/app/auth/trial-initiation/secrets-manager/secrets-manager-trial-paid-stepper.component.html
+++ b/apps/web/src/app/auth/trial-initiation/secrets-manager/secrets-manager-trial-paid-stepper.component.html
@@ -33,7 +33,7 @@
[organizationInfo]="{
name: formGroup.get('name').value,
email: formGroup.get('email').value,
- type: productType
+ type: productType,
}"
[subscriptionProduct]="SubscriptionProduct.SecretsManager"
(steppedBack)="steppedBack()"
diff --git a/apps/web/src/app/auth/trial-initiation/trial-initiation.component.html b/apps/web/src/app/auth/trial-initiation/trial-initiation.component.html
index d8e646c8d58..ed1dc6cda9b 100644
--- a/apps/web/src/app/auth/trial-initiation/trial-initiation.component.html
+++ b/apps/web/src/app/auth/trial-initiation/trial-initiation.component.html
@@ -102,7 +102,7 @@
[organizationInfo]="{
name: orgInfoFormGroup.get('name').value,
email: orgInfoFormGroup.get('email').value,
- type: trialOrganizationType
+ type: trialOrganizationType,
}"
[subscriptionProduct]="SubscriptionProduct.PasswordManager"
(steppedBack)="previousStep()"
diff --git a/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step-content.component.html b/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step-content.component.html
index 06b1dc7c51a..5d7d3c62d2f 100644
--- a/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step-content.component.html
+++ b/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step-content.component.html
@@ -6,7 +6,7 @@
[disabled]="disabled"
class="tw-flex tw-w-full tw-items-center tw-border-none tw-bg-transparent"
[ngClass]="{
- 'hover:tw-bg-secondary-100': !disabled && step.editable
+ 'hover:tw-bg-secondary-100': !disabled && step.editable,
}"
[attr.aria-expanded]="selected"
>
@@ -16,7 +16,7 @@
[ngClass]="{
'tw-bg-primary-600 tw-text-contrast': selected,
'tw-bg-secondary-300 tw-text-main': !selected && !disabled && step.editable,
- 'tw-bg-transparent tw-text-muted': disabled
+ 'tw-bg-transparent tw-text-muted': disabled,
}"
>
{{ stepNumber }}
@@ -30,13 +30,13 @@
{{ step.label }}
diff --git a/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step.component.html b/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step.component.html
index 427a4099175..1881df1c7f3 100644
--- a/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step.component.html
+++ b/apps/web/src/app/auth/trial-initiation/vertical-stepper/vertical-step.component.html
@@ -3,7 +3,7 @@
class="tw-inline-block tw-w-11/12 tw-pl-7"
[ngClass]="{
'tw-border-0 tw-border-l tw-border-solid tw-border-secondary-300': applyBorder,
- 'tw-pt-6': addSubLabelSpacing
+ 'tw-pt-6': addSubLabelSpacing,
}"
>
diff --git a/apps/web/src/app/billing/individual/user-subscription.component.html b/apps/web/src/app/billing/individual/user-subscription.component.html
index 5f9e6463f1b..08eec09ff97 100644
--- a/apps/web/src/app/billing/individual/user-subscription.component.html
+++ b/apps/web/src/app/billing/individual/user-subscription.component.html
@@ -65,7 +65,7 @@
|
- {{ i.name }} {{ i.quantity > 1 ? "×" + i.quantity : "" }} @
+ {{ i.name }} {{ i.quantity > 1 ? "×" + i.quantity : "" }} @
{{ i.amount | currency: "$" }}
|
{{ i.quantity * i.amount | currency: "$" }} /{{ i.interval | i18n }} |
diff --git a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.html b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.html
index dff6cc5c611..35cb0c2ac79 100644
--- a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.html
+++ b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.html
@@ -75,7 +75,7 @@
|
{{ i.productName | i18n }} -
- {{ i.name }} {{ i.quantity > 1 ? "×" + i.quantity : "" }} @
+ {{ i.name }} {{ i.quantity > 1 ? "×" + i.quantity : "" }} @
{{ i.amount | currency: "$" }}
|
diff --git a/apps/web/src/app/layouts/header/web-header.component.html b/apps/web/src/app/layouts/header/web-header.component.html
index 5b55eede778..c8cbd9f8dab 100644
--- a/apps/web/src/app/layouts/header/web-header.component.html
+++ b/apps/web/src/app/layouts/header/web-header.component.html
@@ -3,7 +3,7 @@
class="-tw-m-6 tw-mb-3 tw-flex tw-flex-col tw-p-6"
[ngClass]="{
'tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300 tw-bg-background-alt tw-pb-0':
- tabsContainer.childElementCount !== 0
+ tabsContainer.childElementCount !== 0,
}"
>
diff --git a/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html b/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html
index 55f72401946..41346675bbb 100644
--- a/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html
+++ b/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html
@@ -5,7 +5,7 @@
diff --git a/apps/web/src/app/shared/components/onboarding/onboarding-task.component.html b/apps/web/src/app/shared/components/onboarding/onboarding-task.component.html
index 6623ac4afb7..f0c0b01e06e 100644
--- a/apps/web/src/app/shared/components/onboarding/onboarding-task.component.html
+++ b/apps/web/src/app/shared/components/onboarding/onboarding-task.component.html
@@ -2,7 +2,7 @@
{{ title }}
diff --git a/apps/web/src/app/tools/generator.component.html b/apps/web/src/app/tools/generator.component.html
index f52d1f020d3..d73fe377011 100644
--- a/apps/web/src/app/tools/generator.component.html
+++ b/apps/web/src/app/tools/generator.component.html
@@ -210,7 +210,7 @@
[disabled]="enforcedPasswordPolicyOptions?.useSpecial"
attr.aria-label="{{ 'specialCharacters' | i18n }}"
/>
-
+
|