forked from mirror/pixelfed
Update Profile.vue
This commit is contained in:
parent
76aab4b435
commit
46d8ff90f8
1 changed files with 6 additions and 0 deletions
|
@ -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();
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue