From 06c4e5684271bc8853c78ce38b0bc39f55854f7d Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Wed, 28 Sep 2022 22:09:28 +0900 Subject: [PATCH] fixed login stats table vertical line format --- src/timeline/timelines.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/timeline/timelines.rs b/src/timeline/timelines.rs index eb10e1e6..7a67b00b 100644 --- a/src/timeline/timelines.rs +++ b/src/timeline/timelines.rs @@ -50,8 +50,7 @@ impl Timeline { sammsges.push(format!("Last Timestamp: {}\n", self.stats.end_time)); let mut stats_tb = Table::new(); - stats_tb.load_preset(UTF8_FULL).apply_modifier(UTF8_ROUND_CORNERS) - .set_style(TableComponent::VerticalLines, ' '); + stats_tb.load_preset(UTF8_FULL).apply_modifier(UTF8_ROUND_CORNERS); stats_tb.set_header(vec!["Count", "Percent", "ID", "Event"]);