Display branch when attempt running (#24)

This commit is contained in:
Louis Knight-Webb
2025-06-30 15:57:42 +01:00
committed by GitHub
parent 8b48941e40
commit 76277b279a

View File

@@ -214,6 +214,14 @@ export function TaskDetailsToolbar({
<span className="text-muted-foreground ml-2">
({selectedAttempt.executor || 'executor'})
</span>
{(isAttemptRunning || isStopping) && selectedBranch && (
<span className="text-muted-foreground ml-2">
on{' '}
<span className="font-medium text-foreground">
{selectedBranchDisplayName}
</span>
</span>
)}
</div>
<div className="h-4 w-px bg-border" />
</>