diff --git a/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.html b/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.html index 292f5e1620..d3da809aad 100644 --- a/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.html +++ b/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.html @@ -4,8 +4,8 @@ {{ "total" | i18n }}: - {{ formGroup.value.seatCount || 0 }} × {{ options.seatPrice | currency }} = - {{ seatTotal | currency }} / {{ options.interval | i18n }} + {{ formGroup.value.seatCount || 0 }} × {{ options.seatPrice | currency : "$" }} = + {{ seatTotal | currency : "$" }} / {{ options.interval | i18n }} @@ -27,8 +27,8 @@ /> {{ "maxSeatCost" | i18n }}: - {{ formGroup.value.seatLimit || 0 }} × {{ options.seatPrice | currency }} = - {{ maxSeatTotal | currency }} / {{ options.interval | i18n }} + {{ formGroup.value.seatLimit || 0 }} × {{ options.seatPrice | currency : "$" }} = + {{ maxSeatTotal | currency : "$" }} / {{ options.interval | i18n }} @@ -45,14 +45,14 @@
{{ "additionalServiceAccountsDesc" - | i18n : options.baseServiceAccountCount : (monthlyServiceAccountPrice | currency) + | i18n : options.baseServiceAccountCount : (monthlyServiceAccountPrice | currency : "$") }}
{{ "total" | i18n }}: {{ formGroup.value.serviceAccountCount || 0 }} × - {{ options.additionalServiceAccountPrice | currency }} = - {{ serviceAccountTotal | currency }} / {{ options.interval | i18n }} + {{ options.additionalServiceAccountPrice | currency : "$" }} = + {{ serviceAccountTotal | currency : "$" }} / {{ options.interval | i18n }}
@@ -81,8 +81,8 @@ {{ "maxServiceAccountCost" | i18n }}: {{ formGroup.value.serviceAccountLimit || 0 }} × - {{ options.additionalServiceAccountPrice | currency }} = - {{ maxServiceAccountTotal | currency }} / {{ options.interval | i18n }} + {{ options.additionalServiceAccountPrice | currency : "$" }} = + {{ maxServiceAccountTotal | currency : "$" }} / {{ options.interval | i18n }}