From 91c61a638f9bf6ccf943ff6bf33ceb2d10d99fa9 Mon Sep 17 00:00:00 2001 From: Christopher Krawietz <krawietz@new-communication.de> Date: Mon, 17 May 2021 14:15:43 +0200 Subject: [PATCH] =?UTF-8?q?[BUG]=20=E2=80=94=20Correct=20Time=20Format=20f?= =?UTF-8?q?or=20PageEdit=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/.vuepress/theme/components/PageEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.vuepress/theme/components/PageEdit.vue b/src/.vuepress/theme/components/PageEdit.vue index f287c78..569a05d 100644 --- a/src/.vuepress/theme/components/PageEdit.vue +++ b/src/.vuepress/theme/components/PageEdit.vue @@ -22,7 +22,7 @@ export default { computed: { lastUpdated () { - return this.$page.lastUpdated && moment(this.$page.lastUpdated).locale("de", localization).format('DD. MMMM yyyy, h:mm') + return this.$page.lastUpdated && moment(this.$page.lastUpdated).locale("de", localization).format('DD. MMMM yyyy, H:mm') }, lastUpdatedText () { -- GitLab