chore: release v0.1.3

This commit is contained in:
Jack Wills
2022-08-04 17:25:50 +00:00
parent 965d5184df
commit 305f3ee980
4 changed files with 18 additions and 12 deletions
+1 -5
View File
@@ -148,11 +148,7 @@ fn ui<B: Backend>(
) {
// set max height for container section, needs +4 to deal with docker commands list and borders
let height = app_data.lock().get_container_len();
let height = if height < 12 {
(height + 4) as u16
} else {
12
};
let height = if height < 12 { (height + 4) as u16 } else { 12 };
let column_widths = app_data.lock().get_width();
let has_containers = !app_data.lock().containers.items.is_empty();