From 18c9eb7b1ef30ea485f513033e5f76a405eed43d Mon Sep 17 00:00:00 2001 From: Dotta Date: Wed, 4 Mar 2026 12:20:14 -0600 Subject: [PATCH] Filter out archived companies from new issue company selector Companies with status "archived" are now hidden from the company dropdown in the NewIssueDialog, matching the expected behavior. Co-Authored-By: Claude Opus 4.6 --- ui/src/components/NewIssueDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/NewIssueDialog.tsx b/ui/src/components/NewIssueDialog.tsx index 955f57a3..237b7c5f 100644 --- a/ui/src/components/NewIssueDialog.tsx +++ b/ui/src/components/NewIssueDialog.tsx @@ -527,7 +527,7 @@ export function NewIssueDialog() { - {companies.map((c) => ( + {companies.filter((c) => c.status !== "archived").map((c) => (