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

This commit is contained in:
Jay Sheen
2025-11-11 09:49:51 +09:00
parent bcd4e17edf
commit 11ce237924
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ export const UserAccountAuthWrap = ({
}, [currentStatus, currentIdCL, status, idCL]); }, [currentStatus, currentIdCL, status, idCL]);
const handleSave = () => { const handleSave = () => {
if (!checkGrant(45, 'X')) { if (!checkGrant(45, 'W')) {
showAlert(t('common.nopermission')); showAlert(t('common.nopermission'));
return; return;
} }

View File

@@ -294,7 +294,7 @@ export const UserLoginAuthInfoWrap = ({
}; };
const handleSave = async () => { const handleSave = async () => {
if(!checkGrant(45, 'X')){ if(!checkGrant(45, 'W')){
showAlert(t('common.nopermission')); showAlert(t('common.nopermission'));
return; return;
} }