Skip to content

Commit

Permalink
🐛 display title also when no aggregated/computed qty #218
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB committed Sep 24, 2023
1 parent 76f66a8 commit a6dd9c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,8 @@ pub fn display_with_prettytable(
row.remove_cell(1);
}
table.add_row(row);
} else {
table.add_row(Row::new(vec![Cell::new(&column0)]));
}
}

Expand Down

0 comments on commit a6dd9c2

Please sign in to comment.