From 5607f7e4e2b94a8920bb5639ea3481065f8593c5 Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Thu, 22 Jun 2023 09:24:59 -0700 Subject: [PATCH] [AC-1423] Tweak sorting comment --- .../organizations/organization-subscription-cloud.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts index ae455e6354..52245320fe 100644 --- a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts +++ b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts @@ -356,11 +356,10 @@ function sortSubscriptionItems( b: BillingSubscriptionItemResponse ) { if (a.bitwardenProduct == b.bitwardenProduct) { - // sort addon items to the bottom if (a.addonSubscriptionItem == b.addonSubscriptionItem) { return 0; } - + // sort addon items to the bottom if (a.addonSubscriptionItem) { return 1; }