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