fix: Revert project tab feature

This commit is contained in:
Dheepak Krishnamurthy 2021-12-03 13:41:17 -07:00
parent af21791838
commit 4bd3549037
3 changed files with 15 additions and 112 deletions

View file

@ -296,7 +296,7 @@ impl TaskReportTable {
let c = if let Some(a) = task.annotations() {
format!("[{}]", a.len())
} else {
format!("")
Default::default()
};
format!("{} {}", task.description(), c)
}
@ -304,7 +304,7 @@ impl TaskReportTable {
let c = if let Some(a) = task.annotations() {
format!("[{}]", a.len())
} else {
format!("")
Default::default()
};
let d = task.description().to_string();
let mut available_width = self.description_width;