summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/display/components/total_bandwidth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/components/total_bandwidth.rs b/src/display/components/total_bandwidth.rs
index 095247b..0581330 100644
--- a/src/display/components/total_bandwidth.rs
+++ b/src/display/components/total_bandwidth.rs
@@ -53,7 +53,7 @@ impl<'a> HeaderDetails<'a> {
fn render_elapsed_time(&self, frame: &mut Frame<impl Backend>, rect: Rect) {
let elapsed_time_text = [Text::styled(
format!(
- "Total Elapsed Time: {:02}:{:02}:{:02}",
+ "Total Elapsed Time: {:02}:{:02}:{:02} ",
self.elapsed_time.as_secs() / 3600,
(self.elapsed_time.as_secs() % 3600) / 60,
self.elapsed_time.as_secs() % 60