Polish shared issue columns trigger styling

This commit is contained in:
dotta 2026-04-07 16:59:10 -05:00
parent ee82a4f243
commit 30dd2b78e5
2 changed files with 3 additions and 3 deletions

View file

@ -80,10 +80,10 @@ export function IssueColumnPicker({
type="button" type="button"
variant="ghost" variant="ghost"
size="sm" size="sm"
className="hidden h-8 shrink-0 px-2 text-xs text-muted-foreground hover:text-foreground sm:inline-flex" className="hidden h-8 shrink-0 px-2 text-xs sm:inline-flex"
> >
<Columns3 className="mr-1 h-3.5 w-3.5" /> <Columns3 className="mr-1 h-3.5 w-3.5" />
Show / hide columns Columns
</Button> </Button>
</DropdownMenuTrigger> </DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-[300px] rounded-xl border-border/70 p-1.5 shadow-xl shadow-black/10"> <DropdownMenuContent align="end" className="w-[300px] rounded-xl border-border/70 p-1.5 shadow-xl shadow-black/10">

View file

@ -297,7 +297,7 @@ describe("IssuesList", () => {
); );
await waitForAssertion(() => { await waitForAssertion(() => {
expect(container.textContent).toContain("Show / hide columns"); expect(container.textContent).toContain("Columns");
expect(container.textContent).toContain("PAP-9"); expect(container.textContent).toContain("PAP-9");
expect(container.textContent).toContain("Agent One"); expect(container.textContent).toContain("Agent One");
expect(container.textContent).not.toContain("Updated"); expect(container.textContent).not.toContain("Updated");