diff --git a/src/components/log_search_popup.rs b/src/components/log_search_popup.rs index 9841424e..1d303dfe 100644 --- a/src/components/log_search_popup.rs +++ b/src/components/log_search_popup.rs @@ -75,8 +75,10 @@ impl LogSearchPopupComponent { pub fn open(&mut self) -> Result<()> { self.show()?; + self.selection = Selection::EnterText; self.find_text.show()?; self.find_text.set_text(String::new()); + self.find_text.enabled(true); Ok(()) }