fix: correctly send filter values
This commit is contained in:
parent
6d6f2b4e33
commit
eeee1c842a
1 changed files with 6 additions and 6 deletions
|
@ -124,16 +124,16 @@ const userAuthenticated = computed(() => store.state.auth.authenticated)
|
|||
const loading = computed(() => store.state[LOADING] && store.state[LOADING_MODULE] === 'tasks')
|
||||
|
||||
interface dateStrings {
|
||||
from: string,
|
||||
to: string,
|
||||
dateFrom: string,
|
||||
dateTo: string,
|
||||
}
|
||||
|
||||
function setDate({from, to}: dateStrings) {
|
||||
function setDate(dates: dateStrings) {
|
||||
router.push({
|
||||
name: route.name as string,
|
||||
query: {
|
||||
from: from ?? dateFrom,
|
||||
to: to ?? dateTo,
|
||||
from: dates.dateFrom ?? dateFrom,
|
||||
to: dates.dateTo ?? dateTo,
|
||||
showOverdue: showOverdue.value ? 'true' : 'false',
|
||||
showNulls: showNulls.value ? 'true' : 'false',
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue