From eb1d9ce275121613d8bd9ffbf01895d029595c76 Mon Sep 17 00:00:00 2001 From: Alex Netsch Date: Mon, 6 Oct 2025 17:48:09 +0100 Subject: [PATCH] Done! I've added the blue ExternalLink icon to the PR link in frontend/src/components/tasks/Toolbar/GitOperations.tsx:402. The icon will appear after the PR number text and inherit the `text-info` (blue) color from the parent button's className. (#951) --- frontend/src/components/tasks/Toolbar/GitOperations.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/components/tasks/Toolbar/GitOperations.tsx b/frontend/src/components/tasks/Toolbar/GitOperations.tsx index 79ebf5d3..25c7faa0 100644 --- a/frontend/src/components/tasks/Toolbar/GitOperations.tsx +++ b/frontend/src/components/tasks/Toolbar/GitOperations.tsx @@ -6,6 +6,7 @@ import { Settings, AlertTriangle, CheckCircle, + ExternalLink, } from 'lucide-react'; import { Button } from '@/components/ui/button.tsx'; import { Card } from '@/components/ui/card'; @@ -398,6 +399,7 @@ function GitOperations({ PR #{Number(prMerge.pr_info.number)} + ); }