diff options
Diffstat (limited to 'resources/vue/store/blubber.js')
| -rw-r--r-- | resources/vue/store/blubber.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 }); }, |
