From ad8ac4e342881111d3faebf4cc717b38c69b69a1 Mon Sep 17 00:00:00 2001 From: David Wheatley Date: Mon, 27 Dec 2021 21:32:04 +0100 Subject: [PATCH] fix: posts tab on users page broken --- js/src/forum/components/PostsUserPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/forum/components/PostsUserPage.js b/js/src/forum/components/PostsUserPage.js index 50fbaf6ce..5c8f1901a 100644 --- a/js/src/forum/components/PostsUserPage.js +++ b/js/src/forum/components/PostsUserPage.js @@ -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();