feat(ui): rename review Retry to Continue and make Reset discard the worktree

[Continue] keeps the reject-to-queue + resume behaviour. [Reset] now calls
ResetTaskAsync (discards the task worktree and returns it to Idle) behind a
confirmation, replacing the old park-to-idle action.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-06-05 09:03:47 +02:00
parent 561028e67b
commit 42bb79e2b7
2 changed files with 9 additions and 5 deletions

View File

@@ -199,10 +199,10 @@
FontSize="{StaticResource FontSizeMono}" />
<StackPanel Grid.Column="2" Orientation="Horizontal" Spacing="10"
VerticalAlignment="Top" Margin="12,2,0,0">
<Button Classes="prompt-action accent" Content="[Retry]"
<Button Classes="prompt-action accent" Content="[Continue]"
Command="{Binding RejectReviewCommand}" />
<Button Classes="prompt-action" Content="[Reset]"
Command="{Binding ParkReviewCommand}" />
Command="{Binding ResetReviewCommand}" />
</StackPanel>
</Grid>