From 74218d46396a7b64fa92b4dd0a72d776fd0966b3 Mon Sep 17 00:00:00 2001 From: Luc <59910153+luc-bw@users.noreply.github.com> Date: Fri, 20 Aug 2021 12:57:50 -0700 Subject: [PATCH] Include admin reset on trial (#1530) Objective The "Enterprise Trial button" was missing the admin reset feature on press. Add the checkbox to selected features when pressed. Code Changes Add checked property for UseResetPassword --- src/Admin/Views/Organizations/Edit.cshtml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Admin/Views/Organizations/Edit.cshtml b/src/Admin/Views/Organizations/Edit.cshtml index 1418304c67..d63a6cb43d 100644 --- a/src/Admin/Views/Organizations/Edit.cshtml +++ b/src/Admin/Views/Organizations/Edit.cshtml @@ -31,6 +31,7 @@ document.getElementById('@(nameof(Model.Use2fa))').checked = true; document.getElementById('@(nameof(Model.UseApi))').checked = true; document.getElementById('@(nameof(Model.SelfHost))').checked = true; + document.getElementById('@(nameof(Model.UseResetPassword))').checked = true; // Licensing document.getElementById('@(nameof(Model.LicenseKey))').value = '@Model.RandomLicenseKey'; document.getElementById('@(nameof(Model.ExpirationDate))').value = '@Model.FourteenDayExpirationDate';