사용자관리 권한 오류 수정 X -> W

This commit is contained in:
Jay Sheen
2025-11-10 16:29:40 +09:00
parent 842aaf3613
commit 725efae918
2 changed files with 12 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ export const PasswordManageWrap = () => {
const { navigate } = useNavigate();
const changeLoginPassword = () => {
if (!checkGrant(46, 'X')) {
if (!checkGrant(46, 'R')) {
showAlert(t('common.nopermission'));
return;
}
@@ -17,7 +17,7 @@ export const PasswordManageWrap = () => {
};
const changeCancelPassword = () => {
if (!checkGrant(46, 'X')) {
if (!checkGrant(46, 'R')) {
showAlert(t('common.nopermission'));
return;
}