mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-26 06:20:46 +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)
|
axios.get(url)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
let self = this;
|
let self = this;
|
||||||
this.results = response.data.data;
|
this.results = _.reverse(response.data.data);
|
||||||
this.pagination = response.data.meta.pagination;
|
this.pagination = response.data.meta.pagination;
|
||||||
if(this.results.length > 0) {
|
if(this.results.length > 0) {
|
||||||
$('.load-more-link').removeClass('d-none');
|
$('.load-more-link').removeClass('d-none');
|
||||||
|
|
Loading…
Reference in a new issue