cli: support panel restore list

This commit is contained in:
2026-07-29 19:15:57 +09:00
parent 406104babd
commit 699290ccb1
5 changed files with 150 additions and 56 deletions
+2 -2
View File
@@ -179,8 +179,8 @@ pub async fn launch(options: LaunchOptions) -> ExitCode {
}
Err(e) => Err(Box::new(e) as Box<dyn std::error::Error>),
},
LaunchMode::Panel { .. } => match target.dashboard() {
Ok(dashboard) => dashboard::launch(dashboard.runtime_command).await,
LaunchMode::Panel { include_stopped } => match target.dashboard() {
Ok(dashboard) => dashboard::launch(dashboard.runtime_command, include_stopped).await,
Err(e) => Err(Box::new(e) as Box<dyn std::error::Error>),
},
};