timeline displaying any date with 05 in M/D/Y as "05" for year #154
-
My timeline has started collating every item with 05 in any position in the date (day, month, or year) and displaying them as "05" for the year. This is recent and I haven't configured anything to do with the timeline: https://seattle-archdiocese-archives.github.io/image-collection/timeline.html |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@Seattle-Archdiocese-Archives you have one item with a date in the format yyyy/mm/dd which is breaking the parsing of your dates. The date parsing for creating the Timeline is not sophisticated-- it supports dates only in yyyy, yyyy-mm, yyyy-mm-dd, or mm/dd/yyyy form. If you have something like "1994/02/05", because it has slashes it assumes it is mm/dd/yyyy, thus your new "05" year on the timeline! Fix that date and it will function as expected! |
Beta Was this translation helpful? Give feedback.
-
Thank you so much, that fixed it! |
Beta Was this translation helpful? Give feedback.
@Seattle-Archdiocese-Archives you have one item with a date in the format yyyy/mm/dd which is breaking the parsing of your dates.
This item: https://seattle-archdiocese-archives.github.io/image-collection/item.html?id=vr700.02715
The date parsing for creating the Timeline is not sophisticated-- it supports dates only in yyyy, yyyy-mm, yyyy-mm-dd, or mm/dd/yyyy form. If you have something like "1994/02/05", because it has slashes it assumes it is mm/dd/yyyy, thus your new "05" year on the timeline! Fix that date and it will function as expected!