From f631ba601fda5f7b0bc452a8105b217060d6e5a7 Mon Sep 17 00:00:00 2001 From: prik73 Date: Fri, 11 Apr 2025 19:21:51 -0400 Subject: [PATCH] mgr/dashboard: fix typo in User Management form Fixes: https://tracker.ceph.com/issues/70719 -Corrected the label from 'logon' to 'login' in the User Management form Signed-off-by: prik73 --- .../src/app/core/auth/user-form/user-form.component.html | 2 +- .../src/app/shared/services/change-password-guard.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.component.html b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.component.html index d2e521584734..ea8f8aed0770 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.component.html @@ -189,7 +189,7 @@ User must change password at next logon + i18n>User must change password at next login diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/services/change-password-guard.service.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/services/change-password-guard.service.ts index 8e577687c14b..662ecaa63615 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/services/change-password-guard.service.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/services/change-password-guard.service.ts @@ -18,7 +18,7 @@ export class ChangePasswordGuardService { // are fulfilled: // - The user must be logged in. // - SSO must be disabled. - // - The flag 'User must change password at next logon' must be set. + // - The flag 'User must change password at next login' must be set. if ( this.authStorageService.isLoggedIn() && !this.authStorageService.isSSO() && -- 2.47.3