diff --git a/workers/dynamic-pages/index.js b/workers/dynamic-pages/index.js index 4f6250ef..b19ab248 100644 --- a/workers/dynamic-pages/index.js +++ b/workers/dynamic-pages/index.js @@ -218,7 +218,7 @@ function generateWatchingHTML(media, globals, type) { ${media.favorite ? `

${ICON_MAP.heart} This is one of my favorite ${label}s!

` : ''} ${media.tattoo ? `

${ICON_MAP.needle} I have a tattoo inspired by this ${label}!

` : ''} ${media.collected ? `

${ICON_MAP.circleCheck} This ${label} is in my collection!

` : ''} - ${lastWatched ? `

Last watched on ${new Date(lastWatched).toLocaleDateString()}

` : ''} + ${lastWatched ? `

Last watched on ${new Date(lastWatched).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' })}

` : ''} ${media.review ? `${warningBanner}

My thoughts

${md.render(media.review)}

` : ''} ${generateAssociatedMediaHTML(media)} @@ -324,7 +324,7 @@ function generateBookHTML(book, globals) { const alt = `${book.title}${book.author ? ` by ${book.author}` : ''}` const percentage = book.progress ? `${book.progress}%` : '' const status = book.status === 'finished' - ? `Finished on ${new Date(book.date_finished).toLocaleDateString()}` + ? `Finished on ${new Date(book.date_finished).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' })}` : percentage ? `