Update PostComponents, re-add time to timestamp
This commit is contained in:
parent
4fb3d1fa70
commit
c5281dcdb3
2 changed files with 2 additions and 2 deletions
|
@ -937,7 +937,7 @@ export default {
|
||||||
|
|
||||||
timestampFormat() {
|
timestampFormat() {
|
||||||
let ts = new Date(this.status.created_at);
|
let ts = new Date(this.status.created_at);
|
||||||
return ts.toDateString();
|
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchData() {
|
fetchData() {
|
||||||
|
|
|
@ -643,7 +643,7 @@ export default {
|
||||||
|
|
||||||
timestampFormat() {
|
timestampFormat() {
|
||||||
let ts = new Date(this.status.created_at);
|
let ts = new Date(this.status.created_at);
|
||||||
return ts.toDateString();
|
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchData() {
|
fetchData() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue