From aadd6c8abfbe07477dfb1349f074812c89dfa584 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 15 Dec 2025 20:17:28 -0700 Subject: [PATCH] fix: Fixed an issue with the Managarr table that would incorrectly try to display things before is_loading was ready --- src/ui/widgets/managarr_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/widgets/managarr_table.rs b/src/ui/widgets/managarr_table.rs index 54162ac..a56d677 100644 --- a/src/ui/widgets/managarr_table.rs +++ b/src/ui/widgets/managarr_table.rs @@ -122,7 +122,7 @@ where }; let loading_block = LoadingBlock::new(self.is_loading, self.block.clone()); - if let Some(content) = self.content { + if let Some(content) = self.content && !self.is_loading { let (table_contents, table_state) = if content.filtered_items.is_some() { ( content.filtered_items.as_ref().unwrap(),