From 98d98cc05691f20f8503dae2572cd0f97c6d5570 Mon Sep 17 00:00:00 2001 From: Shirone Date: Sun, 25 Jan 2026 13:58:21 +0100 Subject: [PATCH] fix(ui): fix spinner visibility in github issue validation button The spinner component in the GitHub issue validation button was blended into the button's primary background color, making it invisible. This was caused by the spinner using the default 'primary' variant which applies text-primary color, matching the button's background. Changed the spinner to use the 'foreground' variant which applies text-primary-foreground for proper contrast against the primary background. This follows the existing pattern already implemented in the worktree panel components. Fixes #697 --- .../views/github-issues-view/components/issue-detail-panel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ui/src/components/views/github-issues-view/components/issue-detail-panel.tsx b/apps/ui/src/components/views/github-issues-view/components/issue-detail-panel.tsx index cc62a7fe..dbf38e96 100644 --- a/apps/ui/src/components/views/github-issues-view/components/issue-detail-panel.tsx +++ b/apps/ui/src/components/views/github-issues-view/components/issue-detail-panel.tsx @@ -87,7 +87,7 @@ export function IssueDetailPanel({ if (isValidating) { return ( );