diff --git a/src/format/table.rs b/src/format/table.rs index c4fb6f9fc1..a1530f0922 100644 --- a/src/format/table.rs +++ b/src/format/table.rs @@ -55,7 +55,8 @@ impl RenderView for TableView { let mut table = Table::new(); let fb = FormatBuilder::new() - .separator(LinePosition::Top, LineSeparator::new(' ', ' ', ' ', ' ')) + .separator(LinePosition::Top, LineSeparator::new('-', '+', ' ', ' ')) + .separator(LinePosition::Bottom, LineSeparator::new('-', '+', ' ', ' ')) .separator(LinePosition::Title, LineSeparator::new('-', '+', '|', '|')) .column_separator('|') .padding(1, 1);