diff --git a/src/views/list/ListGantt.vue b/src/views/list/ListGantt.vue index 2df01a40..8b7ec59c 100644 --- a/src/views/list/ListGantt.vue +++ b/src/views/list/ListGantt.vue @@ -77,7 +77,7 @@ const precision = ref('day') const now = ref(new Date()) const defaultFrom = format(new Date((new Date()).setDate(now.value.getDate() - 15)), 'yyyy-LL-dd') -const defaultTo = format(new Date((new Date()).setDate(now.value.getDate() + 30)), 'yyyy-LL-dd') +const defaultTo = format(new Date((new Date()).setDate(now.value.getDate() + 55)), 'yyyy-LL-dd') const range = ref(`${defaultFrom} to ${defaultTo}`) // TODO: only update once both dates are available (maybe use a watcher + refs instead?)