From b13dd7e42d74a0b762c5b879e82bc7673285ce13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 10 Nov 2025 23:50:36 +0100 Subject: [PATCH] Adjust DonationBar component month format to 'long' --- docs/.vuepress/components/DonationBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/components/DonationBar.vue b/docs/.vuepress/components/DonationBar.vue index f673579..968a8de 100644 --- a/docs/.vuepress/components/DonationBar.vue +++ b/docs/.vuepress/components/DonationBar.vue @@ -49,7 +49,7 @@ const title = computed(() => { const currentValueStr = computed(() => { return props.currentValue.toLocaleString(lang) + ' €' //  € }) -const dateFormat = { year: "numeric", month: "short", day: "numeric" } +const dateFormat = { year: "numeric", month: "long", day: "numeric" } const asOfDateStr = computed(() => { switch (locale) { case 'de':