fix: correctly sync filters on upcoming tasks page

Resolves vikunja/frontend#3600
This commit is contained in:
kolaente 2023-06-16 19:49:43 +02:00
parent 154d43a392
commit faa62985df
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -11,10 +11,10 @@
</x-button> </x-button>
</template> </template>
</datepicker-with-range> </datepicker-with-range>
<fancycheckbox @update:model-value="setShowNulls" class="mr-2"> <fancycheckbox @update:model-value="setShowNulls" :model-value="showNulls" class="mr-2">
{{ $t('task.show.noDates') }} {{ $t('task.show.noDates') }}
</fancycheckbox> </fancycheckbox>
<fancycheckbox @update:model-value="setShowOverdue"> <fancycheckbox @update:model-value="setShowOverdue" :model-value="showOverdue">
{{ $t('task.show.overdue') }} {{ $t('task.show.overdue') }}
</fancycheckbox> </fancycheckbox>
</p> </p>