feat: can now be finished as well

This commit is contained in:
2026-01-14 17:48:12 +01:00
parent 7a19b78692
commit 955fefa7ff
2 changed files with 2 additions and 0 deletions

View File

@@ -491,6 +491,7 @@ fn render_manifest_list<TOperator: Operator>(f: &mut Frame, app: &mut App<TOpera
nocontrol::manifests::ManifestStatusState::Stopping => Color::Magenta,
nocontrol::manifests::ManifestStatusState::Deleting => Color::Red,
nocontrol::manifests::ManifestStatusState::Errored => Color::Red,
nocontrol::manifests::ManifestStatusState::Finished => Color::Green,
};
let status_text = format!("{:?}", status);

View File

@@ -56,6 +56,7 @@ pub enum ManifestStatusState {
Running,
Stopping,
Deleting,
Finished,
}
#[derive(Clone, Debug, Serialize, Deserialize)]