feat(web): add empty-state hint for banned users filter
Some checks are pending
CI / test (push) Has started running

This commit is contained in:
2026-03-08 22:39:27 +03:00
parent 2dc04f565f
commit f9c8ba5c52
2 changed files with 4 additions and 1 deletions

View File

@@ -783,6 +783,9 @@ export function ChatInfoPanel({ chatId, open, onClose }: Props) {
</div>
);
})}
{bans.length > 0 && filteredBans.length === 0 ? (
<p className="px-1 py-1 text-xs text-slate-400">No banned users match this filter.</p>
) : null}
</div>
</div>
) : null}