From 99d0b82c8ea5044294b5d12b45f64741a26fd0e3 Mon Sep 17 00:00:00 2001 From: rajeevrajeshuni Date: Sat, 29 Nov 2025 17:43:15 +0530 Subject: [PATCH] WIP - config tui screen --- cognee/cli/tui/config_tui.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cognee/cli/tui/config_tui.py b/cognee/cli/tui/config_tui.py index 6dc6ca7ad..59798705c 100644 --- a/cognee/cli/tui/config_tui.py +++ b/cognee/cli/tui/config_tui.py @@ -242,6 +242,16 @@ class ConfigTUIScreen(Screen): table.focus() + def action_cursor_up(self) -> None: + """Move cursor up in the table.""" + table = self.query_one(DataTable) + table.action_cursor_up() + + def action_cursor_down(self) -> None: + """Move cursor down in the table.""" + table = self.query_one(DataTable) + table.action_cursor_down() + def action_go_back(self) -> None: """Go back to main menu.""" self.app.pop_screen()