1
0
Эх сурвалжийг харах

Update PostComponents, re-add time to timestamp

Daniel Supernault 4 жил өмнө
parent
commit
c5281dcdb3

+ 1 - 1
resources/assets/js/components/PostComponent.vue

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

+ 1 - 1
resources/assets/js/components/RemotePost.vue

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