diff --git a/src/components/dashboard/users/UserPasswordForm.tsx b/src/components/dashboard/users/UserPasswordForm.tsx index 3f0d70967d..b1d2f531d4 100644 --- a/src/components/dashboard/users/UserPasswordForm.tsx +++ b/src/components/dashboard/users/UserPasswordForm.tsx @@ -33,7 +33,9 @@ const UserPasswordForm: FunctionComponent = ({ userId }: IProps) => { LibraryMenu.setTitle(user.Name); if (user.HasConfiguredPassword) { - (page.querySelector('#btnResetPassword') as HTMLDivElement).classList.remove('hide'); + if (!user.Policy?.IsAdministrator) { + (page.querySelector('#btnResetPassword') as HTMLDivElement).classList.remove('hide'); + } (page.querySelector('#fldCurrentPassword') as HTMLDivElement).classList.remove('hide'); } else { (page.querySelector('#btnResetPassword') as HTMLDivElement).classList.add('hide');