From 2ed412145118c664f354051a42976e4037385eb6 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms Date: Thu, 30 May 2024 17:26:11 +0000 Subject: fixes #4191 Closes #4191 Merge request studip/studip!3068 --- resources/vue/store/blubber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/vue/store/blubber.js b/resources/vue/store/blubber.js index 9cc474a..d0bd7f6 100644 --- a/resources/vue/store/blubber.js +++ b/resources/vue/store/blubber.js @@ -166,7 +166,7 @@ export default { // if total is missing, there are more comments to fetch const total = rootGetters['blubber-comments/lastMeta']?.page?.total; - const hasMore = !total; + const hasMore = total ?? true; commit('setMoreOlder', { id, hasMore }); }, -- cgit v1.0