shorter month names per carp

master
Aevann 2024-11-18 17:56:22 +02:00
parent f4ee979fa1
commit 0c9c7ef7d4
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ function showmore(t) {
}
function formatDate(d) {
const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
const months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
const month = months[d.getMonth()]
return `${month} ${d.getDate()}, ${d.getFullYear()}`
}