Fix TUI tab index mismatch causing wrong content display

Tab titles array was missing 'Threat Intel', causing Memory to show
nothing, Logs to show Memory content, etc. Added the missing tab.
This commit is contained in:
pandaadir05
2025-11-21 13:14:39 +02:00
parent 5bbad499fa
commit ed489f985a

View File

@@ -402,6 +402,6 @@ impl App {
}
pub fn get_tab_titles(&self) -> Vec<&str> {
vec!["Overview", "Processes", "Detections", "Memory", "Logs"]
vec!["Overview", "Processes", "Detections", "Threat Intel", "Memory", "Logs"]
}
}