Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
17c46ccc3a
commit
0a7fc23f46
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user