From 0a1a67f2486d203c0e24ddee05b355efe8b3121b Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 13 May 2025 21:49:42 +0200 Subject: [PATCH] chore: add dateFrom and dateTo props with undefined defaults in ShowTasks component --- frontend/src/views/tasks/ShowTasks.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/tasks/ShowTasks.vue b/frontend/src/views/tasks/ShowTasks.vue index 6ef71bcb1..72bdbf4a0 100644 --- a/frontend/src/views/tasks/ShowTasks.vue +++ b/frontend/src/views/tasks/ShowTasks.vue @@ -96,6 +96,8 @@ const props = withDefaults(defineProps<{ }>(), { showNulls: false, showOverdue: false, + dateFrom: undefined, + dateTo: undefined, }) const emit = defineEmits<{