Update Timeline.vue

pull/913/head
marcin mikołajczak 6 years ago committed by GitHub
parent 46d8ff90f8
commit ea978dff45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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();
},

Loading…
Cancel
Save