mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
Read DUE.TODAY as DUETODAY
This commit is contained in:
parent
db269c41f5
commit
5f16bf67ef
1 changed files with 1 additions and 1 deletions
|
@ -743,7 +743,7 @@ impl TTApp {
|
|||
|
||||
for tag_name in tag_names_in_precedence {
|
||||
|
||||
if task.tags().unwrap_or(&vec![]).contains(&tag_name.to_string().to_uppercase()) {
|
||||
if task.tags().unwrap_or(&vec![]).contains(&tag_name.to_string().replace(".", "").to_uppercase()) {
|
||||
let color_tag_name = format!("color.{}", tag_name);
|
||||
let c = self.config.color.get(&color_tag_name).cloned().unwrap_or_default();
|
||||
style = style.fg(c.fg).bg(c.bg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue