feat(ui): add Let Claude handle it broom button to tasks header

This commit is contained in:
mika kuns
2026-07-29 08:55:26 +02:00
parent 24f999facd
commit 7d6cb2bd3e
5 changed files with 23 additions and 2 deletions
@@ -251,6 +251,11 @@ public sealed partial class IslandsShellViewModel : ViewModelBase, IDisposable
if (Lists.SelectedList is { } row)
Lists.OpenListSettingsCommand.Execute(row);
};
Tasks.LetClaudeHandleRequested += (_, _) =>
{
if (Lists.SelectedList is { } row)
Lists.LetClaudeHandleListCommand.Execute(row);
};
Details.CloseDetail = () => Tasks.SelectedTask = null;
Details.DeleteFromList = row =>
{