From c0c28f6349d6355bba0ac2ae6fd234f3462282bd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Sep 2026 18:45:11 +0900 Subject: [PATCH] =?UTF-8?q?UI=20=EA=B0=9C=EC=84=A0=20=EC=98=A4=EB=A5=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- egbim/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egbim/app.js b/egbim/app.js index 2e0a0f5..bbef3c0 100644 --- a/egbim/app.js +++ b/egbim/app.js @@ -290,7 +290,7 @@ const totalPages = Math.max(1, Math.ceil(filtered.length / pageSize)); page = Math.min(page, totalPages); const rows = filtered.slice((page - 1) * pageSize, page * pageSize); - resultCount.textContent = '총 ' + filtered.length + '건'; + if (resultCount) resultCount.textContent = '총 ' + filtered.length + '건'; empty.style.display = rows.length ? 'none' : 'block'; tableBody.innerHTML = rows.map(function (post, index) { const isNotice = post.category === '공지사항';