From d1dd315e7939189a82275125af9bb5fd4ab088f8 Mon Sep 17 00:00:00 2001 From: lesion Date: Sat, 23 Jul 2022 23:03:17 +0200 Subject: [PATCH] minor on time format --- plugins/filters.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/filters.js b/plugins/filters.js index e41f4a57..a794a954 100644 --- a/plugins/filters.js +++ b/plugins/filters.js @@ -96,10 +96,10 @@ export default ({ app, store }) => { // multidate if (event.multidate) { - return `${start.format('ddd, D MMM HH:mm')} - ${end.format('ddd, D MMM HH:mm')}` + return `${start.format('ddd, D MMM, HH:mm')} - ${end.format('ddd, D MMM, HH:mm')}` } // normal event - return `${start.format('dddd, D MMMM HH:mm')} - ${end.format('HH:mm')}` + return `${start.format('dddd, D MMMM, HH:mm')}-${end.format('HH:mm')}` }) }