Skip to content

Commit

Permalink
add missing row height for accounts table
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Aug 20, 2024
1 parent 8ccabf1 commit cf064f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/account/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
Expand Down

0 comments on commit cf064f8

Please sign in to comment.