mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-11 14:40:46 +00:00
Update Timeline.vue
This commit is contained in:
parent
46d8ff90f8
commit
ea978dff45
1 changed files with 7 additions and 1 deletions
|
@ -892,6 +892,9 @@
|
|||
this.following = res.data;
|
||||
this.followingCursor++;
|
||||
});
|
||||
if(res.data.length < 10) {
|
||||
this.followingMore = false;
|
||||
}
|
||||
this.$refs.followingModal.show();
|
||||
},
|
||||
|
||||
|
@ -909,6 +912,9 @@
|
|||
this.followers = res.data;
|
||||
this.followerCursor++;
|
||||
})
|
||||
if(res.data.length < 10) {
|
||||
this.followerMore = false;
|
||||
}
|
||||
this.$refs.followerModal.show();
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue