Skip to content

Commit f631ba6

Browse files
committed
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 <[email protected]>
1 parent e12aad7 commit f631ba6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pybind/mgr/dashboard/frontend/src/app/core/auth/user-form/user-form.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
<cds-checkbox id="pwdUpdateRequired"
190190
formControlName="pwdUpdateRequired"
191191
name="pwdUpdateRequired"
192-
i18n>User must change password at next logon
192+
i18n>User must change password at next login
193193
</cds-checkbox>
194194
</div>
195195
<!--Submit Button-->

src/pybind/mgr/dashboard/frontend/src/app/shared/services/change-password-guard.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class ChangePasswordGuardService {
1818
// are fulfilled:
1919
// - The user must be logged in.
2020
// - SSO must be disabled.
21-
// - The flag 'User must change password at next logon' must be set.
21+
// - The flag 'User must change password at next login' must be set.
2222
if (
2323
this.authStorageService.isLoggedIn() &&
2424
!this.authStorageService.isSSO() &&

0 commit comments

Comments
 (0)