From 4de0f2d7831c1cb1889861c2d649d78461c91f9e Mon Sep 17 00:00:00 2001 From: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Date: Wed, 7 Aug 2024 11:22:09 -0400 Subject: [PATCH] Checking if seats and storage have values before setting them to default (#4596) --- .../Views/Shared/_OrganizationFormScripts.cshtml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Admin/AdminConsole/Views/Shared/_OrganizationFormScripts.cshtml b/src/Admin/AdminConsole/Views/Shared/_OrganizationFormScripts.cshtml index 4dd3c6e27a..98d4c0d900 100644 --- a/src/Admin/AdminConsole/Views/Shared/_OrganizationFormScripts.cshtml +++ b/src/Admin/AdminConsole/Views/Shared/_OrganizationFormScripts.cshtml @@ -79,8 +79,13 @@ document.getElementById('@(nameof(Model.UseTotp))').checked = plan.hasTotp; document.getElementById('@(nameof(Model.UsersGetPremium))').checked = plan.usersGetPremium; - document.getElementById('@(nameof(Model.MaxStorageGb))').value = plan.passwordManager.baseStorageGb || 1; - document.getElementById('@(nameof(Model.Seats))').value = plan.passwordManager.baseSeats || 1; + document.getElementById('@(nameof(Model.MaxStorageGb))').value = + document.getElementById('@(nameof(Model.MaxStorageGb))').value || + plan.passwordManager.baseStorageGb || + 1; + document.getElementById('@(nameof(Model.Seats))').value = document.getElementById('@(nameof(Model.Seats))').value || + plan.passwordManager.baseSeats || + 1; } function unlinkProvider(id) {