fix for dictionary example

This commit is contained in:
Will McGugan
2023-02-21 13:57:52 +00:00
parent dfd67adb60
commit 9b13122583
2 changed files with 5 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ class DictionaryApp(App):
def compose(self) -> ComposeResult:
yield Input(placeholder="Search for a word")
with Content(id="results-container"):
yield Static(id="results")
yield Markdown(id="results")
def on_mount(self) -> None:
"""Called when app starts."""