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.
This commit is contained in:
mika kuns
2026-08-05 09:29:38 +02:00
parent 9804ecefff
commit eee87f086c
@@ -786,7 +786,6 @@ public sealed partial class DetailsIslandViewModel : ViewModelBase, IDisposable
.FirstOrDefaultAsync(t => t.Id == taskId); .FirstOrDefaultAsync(t => t.Id == taskId);
if (entity is null || Task?.Id != taskId) return; if (entity is null || Task?.Id != taskId) return;
Task.UpdateFromEntity(entity); Task.UpdateFromEntity(entity);
OnPropertyChanged(nameof(CanPickUpInTerminal));
OnPropertyChanged(nameof(CanAcceptDrop)); OnPropertyChanged(nameof(CanAcceptDrop));
} }
catch { /* best-effort */ } catch { /* best-effort */ }