fix(notices): 그룹 멤버 테이블에도 '구독중' 배지 표시

좌측 '그룹 멤버' 테이블에서 사용자를 우측 풀에서 옮겨오면 구독중 여부가
안 보였던 문제 — 같은 SUBSCRIBED 플래그 렌더링 추가.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
chpark
2026-05-30 22:21:50 +09:00
parent f2e7c03507
commit be86d22a6f
+1
View File
@@ -296,6 +296,7 @@ export default function AdminNoticesPage() {
<td className="p-1.5 font-semibold">
{u.USER_NAME}
{u.IS_ADMIN && <span className="ml-1 text-[9px] px-1 py-0.5 rounded bg-violet-100 text-violet-700 font-bold"></span>}
{u.SUBSCRIBED && <span className="ml-1 text-[9px] px-1 py-0.5 rounded bg-emerald-100 text-emerald-700 font-bold"></span>}
</td>
<td className="p-1.5 text-slate-400 font-mono">{u.USER_ID}</td>
</tr>