From 3030e15d5e89b8be28bac0c80f2dab17a076310e Mon Sep 17 00:00:00 2001 From: Vyn Date: Mon, 15 Apr 2024 09:40:46 +0200 Subject: [PATCH] Fix tasks without date not displaying in the righ category until restart --- src/qml/forms/TaskForm.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/forms/TaskForm.qml b/src/qml/forms/TaskForm.qml index 1522c22..882037b 100644 --- a/src/qml/forms/TaskForm.qml +++ b/src/qml/forms/TaskForm.qml @@ -63,7 +63,7 @@ ColumnLayout { backend.addTodoFromRawFormat( file.currentValue, newTodoContent.text, - newTodoDate.text + newTodoDate.text != "" ? newTodoDate.text : "No date" ) } form.confirmed()