You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Papaparse used the wrong regular expression for recognising date columns (see mholt/PapaParse#959). As a result a string like this "some text 2023-05-05T15:30:00Z some text" was interpreted as a date and Papaparse tried to convert it into Date instance and got Invalid date.
After parsing sqliteviz converts all Date instances into ISO string in order to make it work in sqlite DB. It failed when applied against Invalid date.
In version 5.4.0 Papaparse fixed the regular expression, so strings like "some text 2023-05-05T15:30:00Z some text" are not interpreted as dates anymore.
Update Papaparse in sqliteviz.
The text was updated successfully, but these errors were encountered:
Papaparse used the wrong regular expression for recognising date columns (see mholt/PapaParse#959). As a result a string like this "some text 2023-05-05T15:30:00Z some text" was interpreted as a date and Papaparse tried to convert it into
Date
instance and gotInvalid date
.After parsing sqliteviz converts all
Date
instances into ISO string in order to make it work in sqlite DB. It failed when applied againstInvalid date
.In version 5.4.0 Papaparse fixed the regular expression, so strings like "some text 2023-05-05T15:30:00Z some text" are not interpreted as dates anymore.
Update Papaparse in sqliteviz.
The text was updated successfully, but these errors were encountered: