Fixed order of date and time in datetime filter

This commit is contained in:
Ferdinand Thiessen 2020-11-06 10:52:13 +01:00
parent d4bc385833
commit 458cf81a91
1 changed files with 1 additions and 1 deletions

View File

@ -24,6 +24,6 @@ export default boot(({ Vue }) => {
? date.getSeconds().toString() ? date.getSeconds().toString()
: `0${date.getSeconds().toString()}`); : `0${date.getSeconds().toString()}`);
} }
return `${H}:${M}${S} ${formatDate(date)}`; return `${formatDate(date)} ${H}:${M}${S}`;
}); });
}); });