mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
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() {
|
||||
let ts = new Date(this.status.created_at);
|
||||
return ts.toDateString();
|
||||
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
|
||||
},
|
||||
|
||||
fetchData() {
|
||||
|
|
|
@ -643,7 +643,7 @@ export default {
|
|||
|
||||
timestampFormat() {
|
||||
let ts = new Date(this.status.created_at);
|
||||
return ts.toDateString();
|
||||
return ts.toDateString() + ' · ' + ts.toLocaleTimeString();
|
||||
},
|
||||
|
||||
fetchData() {
|
||||
|
|
Loading…
Reference in a new issue