From efa27cd2dd59c1a4ac70e630ee894bd1e757a0d4 Mon Sep 17 00:00:00 2001 From: filipriec Date: Fri, 18 Apr 2025 11:35:15 +0200 Subject: [PATCH] highlight restored --- client/src/components/admin/add_table.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/components/admin/add_table.rs b/client/src/components/admin/add_table.rs index dfb4719..fca4add 100644 --- a/client/src/components/admin/add_table.rs +++ b/client/src/components/admin/add_table.rs @@ -78,6 +78,11 @@ pub fn render_add_table( .border_type(BorderType::Rounded) .border_style(columns_border_style), ) + .row_highlight_style( + Style::default() + .add_modifier(Modifier::REVERSED) + .fg(theme.highlight), + ) .highlight_symbol(" > "); // Use the inside symbol f.render_stateful_widget(columns_table, inner_area, &mut add_table_state.column_table_state); return; // IMPORTANT: Stop rendering here for fullscreen mode