Adjust DonationBar component month format to 'long'

This commit is contained in:
Wolfgang Huß 2025-11-10 23:50:36 +01:00
parent 23221d255b
commit b13dd7e42d

View File

@ -49,7 +49,7 @@ const title = computed(() => {
const currentValueStr = computed(() => { const currentValueStr = computed(() => {
return props.currentValue.toLocaleString(lang) + ' €' //   return props.currentValue.toLocaleString(lang) + ' €' //  
}) })
const dateFormat = { year: "numeric", month: "short", day: "numeric" } const dateFormat = { year: "numeric", month: "long", day: "numeric" }
const asOfDateStr = computed(() => { const asOfDateStr = computed(() => {
switch (locale) { switch (locale) {
case 'de': case 'de':