add missing row height for accounts table

This commit is contained in:
Clément DOUIN 2024-08-20 10:58:07 +02:00
parent 8ccabf1fc0
commit cf064f8e0d
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -33,6 +33,7 @@ impl Account {
pub fn to_row(&self, config: &ListAccountsTableConfig) -> Row {
let mut row = Row::new();
row.max_height(1);
row.add_cell(Cell::new(&self.name).fg(config.name_color()));
row.add_cell(Cell::new(&self.backend).fg(config.backends_color()));