1
0

feat: handle changing props

This commit is contained in:
kolaente
2022-07-21 00:34:42 +02:00
parent 3eacc0754f
commit 29dcc02217
2 changed files with 14 additions and 4 deletions

View File

@ -28,7 +28,7 @@
</div>
</div>
</div>
<fancycheckbox class="is-block" v-model="showTaskswithoutDates">
<fancycheckbox class="is-block" v-model="showTasksWithoutDates">
{{ $t('list.gantt.showTasksWithoutDates') }}
</fancycheckbox>
</div>
@ -44,6 +44,7 @@
:date-to="dateTo"
:precision="precision"
:list-id="props.listId"
:show-tasks-without-dates="showTasksWithoutDates"
/>
</card>
@ -71,7 +72,7 @@ const props = defineProps({
},
})
const showTaskswithoutDates = ref(false)
const showTasksWithoutDates = ref(false)
const precision = ref('day')
const now = ref(new Date())