mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-03 18:23:19 +00:00
Fix tasks without date not displaying in the righ category until restart
This commit is contained in:
parent
9ced5c422d
commit
3030e15d5e
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ ColumnLayout {
|
||||||
backend.addTodoFromRawFormat(
|
backend.addTodoFromRawFormat(
|
||||||
file.currentValue,
|
file.currentValue,
|
||||||
newTodoContent.text,
|
newTodoContent.text,
|
||||||
newTodoDate.text
|
newTodoDate.text != "" ? newTodoDate.text : "No date"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
form.confirmed()
|
form.confirmed()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue