Added 'Test All Indexers' table and functionality to the Indexers tab, and upgraded to Ratatui 0.24.0 and cleaned up code for newer Ratatui version

This commit is contained in:
2023-11-25 17:36:30 -07:00
parent d0ce98eb93
commit 76e21e7697
44 changed files with 1132 additions and 428 deletions
+7
View File
@@ -208,3 +208,10 @@ impl From<&RadarrData<'_>> for EditCollectionModal {
edit_collection_modal
}
}
#[derive(Default, Clone, Eq, PartialEq, Debug)]
pub struct IndexerTestResultModalItem {
pub name: String,
pub is_valid: bool,
pub validation_failures: HorizontallyScrollableText,
}