메뉴권한 미존재 유저 접속 시 빈 화면 frame 노출 처리

This commit is contained in:
dogyeom
2025-11-26 13:11:32 +09:00
parent 49e5d15034
commit f3b2e02aba
4 changed files with 39 additions and 2 deletions
+2 -1
View File
@@ -63,7 +63,8 @@
</head>
<body>
<div class="left_box">
<div class="title"><%=menuName%></div>
<!-- 메뉴명이 null일 경우 공백 노출되도록 처리 20251126 -->
<div class="title"><%=menuName != null ? menuName : ""%></div>
<ul class="depth3">
<%
for (MenuUI menuUi : list) {