From eee87f086c2ca11ffb3ecab2b09b600f2db89e66 Mon Sep 17 00:00:00 2001 From: mika kuns Date: Wed, 5 Aug 2026 09:29:38 +0200 Subject: [PATCH] fix(ui): drop notification for the removed CanPickUpInTerminal property Semantic merge collision between two tasks merged in the same run: the "remove pick up in terminal" refactor deleted DetailsIslandViewModel's CanPickUpInTerminal, while the status-refresh fix (written against the pre-deletion base) still raised a change notification for it. Git merged both cleanly; the build did not. CanAcceptDrop is still notified - that binding remains. --- src/ClaudeDo.Ui/ViewModels/Islands/DetailsIslandViewModel.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ClaudeDo.Ui/ViewModels/Islands/DetailsIslandViewModel.cs b/src/ClaudeDo.Ui/ViewModels/Islands/DetailsIslandViewModel.cs index 5e395754..c4d5ade3 100644 --- a/src/ClaudeDo.Ui/ViewModels/Islands/DetailsIslandViewModel.cs +++ b/src/ClaudeDo.Ui/ViewModels/Islands/DetailsIslandViewModel.cs @@ -786,7 +786,6 @@ public sealed partial class DetailsIslandViewModel : ViewModelBase, IDisposable .FirstOrDefaultAsync(t => t.Id == taskId); if (entity is null || Task?.Id != taskId) return; Task.UpdateFromEntity(entity); - OnPropertyChanged(nameof(CanPickUpInTerminal)); OnPropertyChanged(nameof(CanAcceptDrop)); } catch { /* best-effort */ }