1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

fix: posts tab on users page broken

This commit is contained in:
David Wheatley
2021-12-27 21:32:04 +01:00
parent d53ab07648
commit 93e7732117

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();