mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-24 21:40:47 +00:00
Update PostComments, fix comment order
This commit is contained in:
parent
2d2c9a60f8
commit
327dd89177
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ export default {
|
|||
axios.get(url)
|
||||
.then(response => {
|
||||
let self = this;
|
||||
this.results = response.data.data;
|
||||
this.results = _.reverse(response.data.data);
|
||||
this.pagination = response.data.meta.pagination;
|
||||
if(this.results.length > 0) {
|
||||
$('.load-more-link').removeClass('d-none');
|
||||
|
|
Loading…
Reference in a new issue