Add task details scroll

This commit is contained in:
Dheepak Krishnamurthy 2021-03-26 10:33:31 -06:00
parent d8be829dea
commit 4682fe76b0
4 changed files with 36 additions and 9 deletions

View file

@ -254,14 +254,14 @@ impl TaskReportTable {
},
"description.count" => {
let c = match task.annotations() {
Some(a) => format!("[{}]", a.iter().count()),
Some(a) => format!("[{}]", a.len()),
None => format!(""),
};
format!("{} {}", task.description().to_string(), c)
}
"description.truncated_count" => {
let c = match task.annotations() {
Some(a) => format!(" [{}]", a.iter().count()),
Some(a) => format!(" [{}]", a.len()),
None => format!(""),
};
let mut d = task.description().to_string();