From 7abf62620b2c7c7301ed0201cc6b13c5ae1299ba Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Wed, 25 Mar 2026 15:43:22 +0900 Subject: [PATCH] =?UTF-8?q?fix(tkuser):=20=EA=B6=8C=ED=95=9C=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EC=9E=90=EC=97=90=EA=B2=8C=20=EB=B9=84=EB=B0=80?= =?UTF-8?q?=EB=B2=88=ED=98=B8=20=EB=B3=80=EA=B2=BD=20=ED=8F=BC=20=EC=A4=91?= =?UTF-8?q?=EB=B3=B5=20=ED=91=9C=EC=8B=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tkuser.users 권한이 있는 일반 사용자에게 adminSection과 passwordChangeSection이 동시 표시되던 문제 수정. 비밀번호 변경 폼은 아무 권한 없는 사용자 fallback으로만 표시. Co-Authored-By: Claude Opus 4.6 (1M context) --- user-management/web/index.html | 2 +- user-management/web/static/js/tkuser-core.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/user-management/web/index.html b/user-management/web/index.html index 8af4b63..b61499d 100644 --- a/user-management/web/index.html +++ b/user-management/web/index.html @@ -2388,7 +2388,7 @@ - + diff --git a/user-management/web/static/js/tkuser-core.js b/user-management/web/static/js/tkuser-core.js index a1b1389..c8a4319 100644 --- a/user-management/web/static/js/tkuser-core.js +++ b/user-management/web/static/js/tkuser-core.js @@ -166,7 +166,6 @@ async function init() { // tkuser.users 권한 시 adminSection + passwordChangeSection 표시 if (currentUserAllowedTabs.has('users')) { document.getElementById('adminSection').classList.remove('hidden'); - document.getElementById('passwordChangeSection').classList.remove('hidden'); await loadDepartmentsCache(); await loadUsers(); } else {