Currently, I am utilizing Vue / Buefy as a datepicker in the form on a specific page (2nd step). You can find the page here:
An issue has arisen where the date of birth input is sometimes recorded inaccurately. For instance, the user selects June 5th, 1975, but the data saved shows either June 6th or June 4th, 1975 instead.
Initially, we believed the problem lay with the server, so an adjustment was made to transfer the selected date as a string to prevent any changes. However, it now appears that the issue may be within Vue itself, especially since there have been reports of bugs in the datepicker component.
We attempted to resolve this by switching getDate
to getUTCDate
in the Datepicker component, but unfortunately, this did not solve the problem.
Have you encountered this issue before, or do you have any recommendations on how to address it?