fix: search date product
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
This commit is contained in:
parent
d2acd6ba4c
commit
80056f8e0b
1 changed files with 2 additions and 2 deletions
|
|
@ -1912,8 +1912,8 @@ async function triggerExport() {
|
||||||
? 'ACTIVE'
|
? 'ACTIVE'
|
||||||
: undefined,
|
: undefined,
|
||||||
|
|
||||||
startDate: new Date(searchDate.value[0]),
|
startDate: searchDate.value[0] ? new Date(searchDate.value[0]) : undefined,
|
||||||
endDate: new Date(searchDate.value[1]),
|
endDate: searchDate.value[1] ? new Date(searchDate.value[1]) : undefined,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue