feat(ui): wire worker connection modal and make status pill clickable

This commit is contained in:
mika kuns
2026-06-01 12:18:28 +02:00
parent 00dc7ebccc
commit 1246bf7b88
2 changed files with 24 additions and 14 deletions

View File

@@ -68,6 +68,12 @@ public partial class MainWindow : Window
modal.CloseAction = () => dlg.Close();
await dlg.ShowDialog(this);
};
vm.ShowWorkerConnectionModal = async (connVm) =>
{
var dlg = new WorkerConnectionModalView { DataContext = connVm };
connVm.CloseAction = () => dlg.Close();
await dlg.ShowDialog(this);
};
}
}