diff --git a/WebContent/jsp/onl/apim/portaluser/portalUserManDetail.jsp b/WebContent/jsp/onl/apim/portaluser/portalUserManDetail.jsp
index a764a6c..b970798 100644
--- a/WebContent/jsp/onl/apim/portaluser/portalUserManDetail.jsp
+++ b/WebContent/jsp/onl/apim/portaluser/portalUserManDetail.jsp
@@ -66,16 +66,18 @@
// 현재 상태가 탈퇴인 경우
if (status === STATUS.REMOVED) {
- $("#btn_modify").show().prop('disabled', true);
+ $("#btn_modify").show().prop('disabled', false);
return;
}
// 일반 상태
- $("#btn_modify").show().prop('disabled', !isUnmasked);
+ /* $("#btn_modify").show().prop('disabled', !isUnmasked);
if (isUnmasked) {
$("input, select").prop('disabled', false);
updateOrgControl();
- }
+ } */
+ // 25.09.29 - 항상 해제
+ $("#btn_modify").show().prop('disabled', false);
}
function init() {
@@ -261,7 +263,7 @@
}
const fullLoginId = id + "@" + domain;
- const emailPattern = /^[A-Za-z][A-Za-z0-9._-]*@[A-Za-z0-9][-A-Za-z0-9.]+\.[A-Za-z]{2,}$/;
+ const emailPattern = /^[A-Za-z0-9._-]*@[A-Za-z0-9][-A-Za-z0-9.]+\.[A-Za-z]{2,}$/;
if (!emailPattern.test(fullLoginId)) {
alert(fullLoginId + " 은 올바른 이메일 형식이 아닙니다.");
return;
@@ -558,9 +560,11 @@
-
+
@
-
+
|