remove colon between minutes and am/pm

This commit is contained in:
liamcottle
2024-11-07 23:09:34 +13:00
parent 537f81230b
commit e76abd8d9f

View File

@ -352,7 +352,7 @@
.replaceAll('\n', '<br/>'); .replaceAll('\n', '<br/>');
}, },
formatMessageTimestamp(createdAt) { formatMessageTimestamp(createdAt) {
return moment(new Date(createdAt)).local().format("DD/MMM/YYYY hh:mm:A"); return moment(new Date(createdAt)).local().format("DD/MMM/YYYY hh:mm A");
}, },
}, },
computed: { computed: {