Merge pull request #2255 from kkigomi/patch-1

관리자 메뉴 추가에서 빈 메뉴 항목을 잘못 표시하는 문제 수정
This commit is contained in:
Kijin Sung 2024-01-01 14:52:36 +09:00 committed by GitHub
commit 85fd994156
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,10 @@ jQuery(function($){
for(var x in moduleList)
{
var menuList = moduleList[x];
if (!menuList)
{
continue;
}
$optgroup = $('<optgroup label="'+x+'" />').appendTo(menuNameList);
for(var y in menuList)
{