diff --git a/resources/assets/js/components/Timeline.vue b/resources/assets/js/components/Timeline.vue index 09fb2a47..29ced302 100644 --- a/resources/assets/js/components/Timeline.vue +++ b/resources/assets/js/components/Timeline.vue @@ -892,6 +892,9 @@ this.following = res.data; this.followingCursor++; }); + if(res.data.length < 10) { + this.followingMore = false; + } this.$refs.followingModal.show(); }, @@ -908,7 +911,10 @@ .then(res => { this.followers = res.data; this.followerCursor++; - }) + }) + if(res.data.length < 10) { + this.followerMore = false; + } this.$refs.followerModal.show(); },