diff --git a/resources/assets/js/components/Timeline.vue b/resources/assets/js/components/Timeline.vue index baf0f6528..09fb2a47e 100644 --- a/resources/assets/js/components/Timeline.vue +++ b/resources/assets/js/components/Timeline.vue @@ -922,7 +922,8 @@ if(res.data.length > 0) { this.following.push(...res.data); this.followingCursor++; - } else { + } + if(res.data.length < 10) { this.followingMore = false; } }); @@ -939,11 +940,12 @@ if(res.data.length > 0) { this.followers.push(...res.data); this.followerCursor++; - } else { + } + if(res.data.length < 10) { this.followerMore = false; } }); } } } - \ No newline at end of file +