mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +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.following = res.data;
|
||||||
this.followingCursor++;
|
this.followingCursor++;
|
||||||
});
|
});
|
||||||
|
if(res.data.length < 10) {
|
||||||
|
this.followingMore = false;
|
||||||
|
}
|
||||||
this.$refs.followingModal.show();
|
this.$refs.followingModal.show();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -909,6 +912,9 @@
|
||||||
this.followers = res.data;
|
this.followers = res.data;
|
||||||
this.followerCursor++;
|
this.followerCursor++;
|
||||||
})
|
})
|
||||||
|
if(res.data.length < 10) {
|
||||||
|
this.followerMore = false;
|
||||||
|
}
|
||||||
this.$refs.followerModal.show();
|
this.$refs.followerModal.show();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue