From 5fd9ab5fa5a671df6629cc9756fb9e188404fb6f Mon Sep 17 00:00:00 2001 From: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Date: Fri, 21 Jun 2024 13:53:10 -0400 Subject: [PATCH] Showing Teams Starter option in org edit dropdown in the admin portal if user is on that plan (#4187) --- src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml b/src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml index 5c43da6286..962e3fbec6 100644 --- a/src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml +++ b/src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml @@ -74,7 +74,7 @@ (Model.Provider == null || p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or >= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually) && - p != PlanType.TeamsStarter + (Model.PlanType == PlanType.TeamsStarter || p is not PlanType.TeamsStarter) ) .Select(e => new SelectListItem {