wip: gui_status, should use a hashset?

This commit is contained in:
Jack Wills
2022-10-14 21:26:20 +00:00
parent 46ffbeef6a
commit 90e26c300e
7 changed files with 240 additions and 192 deletions
+2 -4
View File
@@ -15,8 +15,8 @@ pub struct AppData {
error: Option<AppError>,
logs_parsed: bool,
pub containers: StatefulList<ContainerItem>,
pub init: bool,
pub show_error: bool,
// pub init: bool,
// pub show_error: bool,
sorted_by: Option<(Header, SortedOrder)>,
}
@@ -79,9 +79,7 @@ impl AppData {
args,
containers: StatefulList::new(vec![]),
error: None,
init: false,
logs_parsed: false,
show_error: false,
sorted_by: None,
}
}