Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-20 00:17:04 +00:00
co-authored by renee-png
parent 17c46ccc3a
commit 0a7fc23f46
+2
View File
@@ -113,6 +113,8 @@ function CollectionsIndexPage() {
stages.find((s) => s.key === key)?.label ?? key ?? "—";
const filtered = rows.filter((r) => {
if (statusFilter === "open" && r.status === "closed") return false;
if (statusFilter === "closed" && r.status !== "closed") return false;
if (stageFilter !== "all" && r.current_stage !== stageFilter) return false;
if (!search.trim()) return true;
const q = search.toLowerCase();