style(project): 모든 댓글 표시를 💬 이모지로 통일

달력/보드/리스트 말풍선과 업무 모달 댓글 헤더 아이콘을 material 폰트
대신 💬 이모지로 변경(타임라인과 일관).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-25 17:31:31 +09:00
parent 6e0180944e
commit 0822baf5b7
4 changed files with 9 additions and 10 deletions
+2 -2
View File
@@ -179,8 +179,8 @@
function cmtBadge(t, cls) {
const n = t.comment_count || 0;
if (!n) return "";
return '<span class="material-symbols-outlined pj-cmt-ic ' + (cls || "") +
'" title="댓글 ' + n + '개">chat_bubble</span><span class="pj-cmt-n">' + n + "</span>";
return '<span class="pj-cmt-ic ' + (cls || "") +
'" title="댓글 ' + n + '개">💬</span><span class="pj-cmt-n">' + n + "</span>";
}
const dataEl = el("pj-data");