From ed489f985a810e4906ca116dbf2a02509bc7818b Mon Sep 17 00:00:00 2001 From: pandaadir05 Date: Fri, 21 Nov 2025 13:14:39 +0200 Subject: [PATCH] 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. --- ghost-tui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost-tui/src/app.rs b/ghost-tui/src/app.rs index 83a37d2..54b8a0f 100644 --- a/ghost-tui/src/app.rs +++ b/ghost-tui/src/app.rs @@ -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"] } }