diff --git a/src/ClaudeDo.Ui/Views/MainWindow.axaml b/src/ClaudeDo.Ui/Views/MainWindow.axaml index fdf7058..1c922e8 100644 --- a/src/ClaudeDo.Ui/Views/MainWindow.axaml +++ b/src/ClaudeDo.Ui/Views/MainWindow.axaml @@ -186,20 +186,24 @@ BorderBrush="{DynamicResource LineBrush}" BorderThickness="0,1,0,0"> - - - - - - - + + dlg.Close(); await dlg.ShowDialog(this); }; + vm.ShowWorkerConnectionModal = async (connVm) => + { + var dlg = new WorkerConnectionModalView { DataContext = connVm }; + connVm.CloseAction = () => dlg.Close(); + await dlg.ShowDialog(this); + }; } }