Update PostComponents, re-add time to timestamp

This commit is contained in:
Daniel Supernault 2021-07-27 00:49:59 -06:00
parent 4fb3d1fa70
commit c5281dcdb3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 2 additions and 2 deletions

View File

@ -937,7 +937,7 @@ export default {
timestampFormat() {
let ts = new Date(this.status.created_at);
return ts.toDateString();
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
},
fetchData() {

View File

@ -643,7 +643,7 @@ export default {
timestampFormat() {
let ts = new Date(this.status.created_at);
return ts.toDateString();
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
},
fetchData() {