We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c06a842 + 5f5cbbc commit ebcb804Copy full SHA for ebcb804
src/braindrop/app/screens/search_input.py
@@ -9,7 +9,7 @@
9
10
11
##############################################################################
12
-class SearchInput(ModalScreen[str]):
+class SearchInput(ModalScreen[str | None]):
13
"""A modal screen to get search text from the user."""
14
15
CSS = """
@@ -38,7 +38,7 @@ def search(self) -> None:
38
39
def action_escape(self) -> None:
40
"""Escape out without searching."""
41
- self.app.pop_screen()
+ self.dismiss(None)
42
43
44
### search_input.py ends here
0 commit comments