From a7b4f424e33afc57646996cdd7b7a4cdd49d3373 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Tue, 4 Aug 2020 05:15:17 -0600 Subject: [PATCH] Update export_headers to always create new vec! --- src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.rs b/src/app.rs index 08ad831..b31f01a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -560,6 +560,8 @@ impl TTApp { } pub fn export_headers(&mut self) { + self.task_report_columns = vec![]; + self.task_report_labels = vec![]; let output = Command::new("task") .arg("show")