로그검색 오타수정

This commit is contained in:
daekuk
2025-12-12 15:43:26 +09:00
parent b6ddc1c8b4
commit 59fe21e333
@@ -292,13 +292,13 @@
}
function orgNameFormatter(cellvalue, options, rowObject) {
if (cellValue == null) return "";
if (cellvalue == null) return "";
if (cellValue === "null" || cellValue === "NULL") return "";
if (cellvalue === "null" || cellvalue === "NULL") return "";
if (String(cellValue).trim() === "") return "";
if (String(cellvalue).trim() === "") return "";
if (cellValue === "미분류") return "";
if (cellvalue === "미분류") return "";
return cellvalue;
}