Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
Bug: Date V-Allocation
Browse files Browse the repository at this point in the history
  • Loading branch information
elsiosanchez committed Sep 6, 2023
1 parent 3097a70 commit cde2b85
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,10 @@ export default defineComponent({
})

watch(maximumDefiniteDate, (newValue, oldValue) => {
if (!isEmptyValue(newValue)) currentDateProcess.value = newValue[0]
if (!isEmptyValue(newValue) && !isEmptyValue(newValue[0])) {
const dateParse = newValue[0] + 'T00:00:00'
currentDateProcess.value = dateParse
}
})

return {
Expand Down

0 comments on commit cde2b85

Please sign in to comment.