Add config editing to UI

This commit is contained in:
Andrew-71 2024-05-09 23:44:37 +03:00
parent 20ca509a2b
commit fa2ecacce5
15 changed files with 74 additions and 55 deletions

View file

@ -3,7 +3,8 @@ function formatDate(date) {
let dateFormat = new Intl.DateTimeFormat([langName, "en"], {
year: 'numeric',
month: 'short',
day: 'numeric'
day: 'numeric',
timeZone: timeZone
})
return dateFormat.format(date)
}