mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-03-12 01:59:34 -05:00
fix: emit null
This commit is contained in:
@@ -164,8 +164,8 @@ watch(
|
||||
|
||||
function emitChanged() {
|
||||
const args = {
|
||||
dateFrom: from.value === '' ? '' : from.value,
|
||||
dateTo: to.value === '' ? '' : to.value,
|
||||
dateFrom: from.value === '' ? null : from.value,
|
||||
dateTo: to.value === '' ? null : to.value,
|
||||
}
|
||||
emit('update:modelValue', args)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user