use assets from the vanilla repo

This commit is contained in:
Lee
2023-12-30 22:43:38 +00:00
parent 1663a127cc
commit 6fd5fdb7fe
6 changed files with 32 additions and 36 deletions

View File

@ -107,7 +107,7 @@ export function formatTimestampSeconds (secs) {
export function formatDate (secs) {
const date = new Date(0)
date.setUTCSeconds(secs)
return date.toLocaleDateString('it-IT')
return date.toLocaleDateString()
}
export function formatPercent (x, over) {