Disable cursor and interaction for entry details table in HostsManagerApp

This commit is contained in:
Philip Henning 2025-08-14 16:49:04 +02:00
parent 48e8e1c67c
commit 4d025f2f76

View file

@ -75,7 +75,7 @@ class HostsManagerApp(App):
# Right pane - entry details or edit form # Right pane - entry details or edit form
with Vertical(classes="right-pane"): with Vertical(classes="right-pane"):
yield Static("Entry Details", id="details-title") 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) # Edit form (initially hidden)
with Vertical(id="entry-edit-form", classes="hidden"): with Vertical(id="entry-edit-form", classes="hidden"):