로그검색 오타수정

This commit is contained in:
daekuk
2025-12-22 09:26:26 +09:00
parent e5c549c13d
commit 1398986921
@@ -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;
}