mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-23 20:16:41 +02:00
feat: Add scheduled (#562)
This commit is contained in:
commit
4e7eaa2c98
1 changed files with 4 additions and 0 deletions
|
@ -276,6 +276,10 @@ impl TaskReportTable {
|
|||
),
|
||||
None => "".to_string(),
|
||||
},
|
||||
"scheduled" => match task.scheduled() {
|
||||
Some(v) => format_date(NaiveDateTime::new(v.date(), v.time())),
|
||||
None => "".to_string(),
|
||||
},
|
||||
"due.relative" => match task.due() {
|
||||
Some(v) => vague_format_date_time(
|
||||
Local::now().naive_utc(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue