fix: Fixed an issue with the Managarr table that would incorrectly try to display things before is_loading was ready

This commit is contained in:
2025-12-15 20:17:28 -07:00
parent 316ed64315
commit aadd6c8abf
+1 -1
View File
@@ -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(),