From 5a44da8787ee2e1481c3e27669fc2419f8595144 Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Tue, 29 Apr 2025 18:04:17 +0200 Subject: [PATCH] [PM-18213] Pricing cards for free SM upgrade not accurate (#14238) Co-authored-by: Jonas Hendrickx --- .../organizations/change-plan-dialog.component.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/billing/organizations/change-plan-dialog.component.html b/apps/web/src/app/billing/organizations/change-plan-dialog.component.html index 7d898a1307b..91e2e83a92c 100644 --- a/apps/web/src/app/billing/organizations/change-plan-dialog.component.html +++ b/apps/web/src/app/billing/organizations/change-plan-dialog.component.html @@ -150,10 +150,11 @@ >{{ "costPerMember" | i18n - : ((selectableProduct.isAnnual - ? selectableProduct.PasswordManager.seatPrice / 12 - : selectableProduct.PasswordManager.seatPrice - ) + : (((this.sub.useSecretsManager + ? selectableProduct.SecretsManager.seatPrice + : 0) + + selectableProduct.PasswordManager.seatPrice) / + (selectableProduct.isAnnual ? 12 : 1) | currency: "$") }}