From 4d025f2f769a9d022b1b0e89ebe08824bf1d5b37 Mon Sep 17 00:00:00 2001 From: phg Date: Thu, 14 Aug 2025 16:49:04 +0200 Subject: [PATCH] Disable cursor and interaction for entry details table in HostsManagerApp --- src/hosts/tui/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hosts/tui/app.py b/src/hosts/tui/app.py index f7aa3a5..33660cd 100644 --- a/src/hosts/tui/app.py +++ b/src/hosts/tui/app.py @@ -75,7 +75,7 @@ class HostsManagerApp(App): # Right pane - entry details or edit form with Vertical(classes="right-pane"): yield Static("Entry Details", id="details-title") - yield DataTable(id="entry-details-table", show_header=False) + yield DataTable(id="entry-details-table", show_header=False, show_cursor=False, disabled=True) # Edit form (initially hidden) with Vertical(id="entry-edit-form", classes="hidden"):