UI 개선 오류
Deploy EG-BIM QA Gateway / deploy (push) Successful in 35s

This commit is contained in:
root
2026-09-21 18:45:11 +09:00
parent aa1cd8ad5c
commit c0c28f6349
+1 -1
View File
@@ -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 === '공지사항';