feat(ui): add Continue and Reset buttons to agent strip

This commit is contained in:
Mika Kuns
2026-04-21 17:44:00 +02:00
parent f90d3d8375
commit 2ce6b7bd3a

View File

@@ -141,6 +141,18 @@
<TextBlock Text="Worktree" VerticalAlignment="Center"/> <TextBlock Text="Worktree" VerticalAlignment="Center"/>
</StackPanel> </StackPanel>
</Button> </Button>
<Button Classes="btn accent"
Content="Continue"
Command="{Binding ContinueCommand}"
IsVisible="{Binding ShowFailedActions}"
ToolTip.Tip="Resume the task from where it failed"
Padding="10,4"/>
<Button Classes="btn"
Content="Reset"
Command="{Binding ResetCommand}"
IsVisible="{Binding ShowFailedActions}"
ToolTip.Tip="Reset the task back to queued so it can be retried from scratch"
Padding="10,4"/>
</StackPanel> </StackPanel>
</StackPanel> </StackPanel>