feat: add ecc2 dashboard session deletion controls

This commit is contained in:
Affaan Mustafa
2026-04-07 11:56:07 -07:00
parent 52fc93180b
commit e923c60bee
4 changed files with 131 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ pub async fn run(db: StateStore, cfg: Config) -> Result<()> {
(_, KeyCode::Char('s')) => dashboard.stop_selected().await,
(_, KeyCode::Char('u')) => dashboard.resume_selected().await,
(_, KeyCode::Char('x')) => dashboard.cleanup_selected_worktree().await,
(_, KeyCode::Char('d')) => dashboard.delete_selected_session().await,
(_, KeyCode::Char('r')) => dashboard.refresh(),
(_, KeyCode::Char('?')) => dashboard.toggle_help(),
_ => {}