From f356a05fbf8fc31ee4704e16973f387c7d3e8529 Mon Sep 17 00:00:00 2001 From: jpt Date: Mon, 19 May 2025 22:06:44 -0500 Subject: [PATCH] fix text --- src/tt/tui/editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tt/tui/editor.py b/src/tt/tui/editor.py index c41c095..3635f4f 100644 --- a/src/tt/tui/editor.py +++ b/src/tt/tui/editor.py @@ -389,7 +389,7 @@ class TableEditor(App): # found at https://github.com/Textualize/textual/discussions/1654 self._driver.stop_application_mode() - new_text = get_text_from_editor(item.text) + new_text = get_text_from_editor(item.data["text"]) self.refresh() self._driver.start_application_mode() if new_text is not None: