Fixed order of date and time in datetime filter
This commit is contained in:
parent
d4bc385833
commit
458cf81a91
|
@ -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}`;
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue