chore: release v0.3.1

This commit is contained in:
Jack Wills
2023-06-04 00:40:39 +00:00
parent 53234cb3cd
commit ef39082276
7 changed files with 20 additions and 26 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ pub mod log_sanitizer {
use cansi::{v3::categorise_text, Color as CansiColor, Intensity};
use ratatui::{
style::{Color, Modifier, Style},
text::{Span, Line},
text::{Line, Span},
};
/// Attempt to colorize the given string to ratatui standards
+1 -1
View File
@@ -4,7 +4,7 @@ use ratatui::{
layout::{Alignment, Constraint, Direction, Layout, Rect},
style::{Color, Modifier, Style},
symbols,
text::{Span, Line},
text::{Line, Span},
widgets::{
Axis, Block, BorderType, Borders, Chart, Clear, Dataset, GraphType, List, ListItem,
Paragraph,
+2 -1
View File
@@ -278,7 +278,8 @@ fn draw_frame<B: Backend>(
);
if let Some(id) = delete_confirm {
app_data.lock().get_container_name_by_id(&id).map_or_else(|| {
app_data.lock().get_container_name_by_id(&id).map_or_else(
|| {
// If a container is deleted outside of oxker but whilst the Delete Confirm dialog is open, it can get caught in kind of a dead lock situation
// so if in that unique situation, just clear the delete_container id
gui_state.lock().set_delete_container(None);