1
0
Fork 0

Update Profile.vue

This commit is contained in:
marcin mikołajczak 2019-02-28 20:24:25 +01:00 committed by GitHub
parent 76aab4b435
commit 46d8ff90f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -671,6 +671,9 @@ export default {
.then(res => {
this.following = res.data;
this.followingCursor++;
if(res.data.length < 10) {
this.followingMore = false;
}
});
this.$refs.followingModal.show();
},
@ -688,6 +691,9 @@ export default {
.then(res => {
this.followers = res.data;
this.followerCursor++;
if(res.data.length < 10) {
this.followerMore = false;
}
})
this.$refs.followerModal.show();
},