From 458cf81a912d2aee8e18732d29be3e09d1e1fa43 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 6 Nov 2020 10:52:13 +0100 Subject: [PATCH] Fixed order of date and time in datetime filter --- src/boot/filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/filter.ts b/src/boot/filter.ts index 559600c..902a511 100644 --- a/src/boot/filter.ts +++ b/src/boot/filter.ts @@ -24,6 +24,6 @@ export default boot(({ Vue }) => { ? date.getSeconds().toString() : `0${date.getSeconds().toString()}`); } - return `${H}:${M}${S} ${formatDate(date)}`; + return `${formatDate(date)} ${H}:${M}${S}`; }); });