fix: posts tab on users page broken

This commit is contained in:
David Wheatley 2021-12-27 21:32:04 +01:00
parent 2e5cd6f5c3
commit ad8ac4e342
No known key found for this signature in database
GPG Key ID: DCC0FCE349280DFF

View File

@ -145,7 +145,7 @@ export default class PostsUserPage extends UserPage {
parseResults(results) {
this.loading = false;
this.posts.push(results);
this.posts.push(...results);
this.moreResults = results.length >= this.loadLimit;
m.redraw();