1
0
Fork 0

Update PostComments, fix comment order

This commit is contained in:
Daniel Supernault 2018-12-29 22:36:16 -07:00
parent 2d2c9a60f8
commit 327dd89177
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -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');