mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Merge pull request #913 from m4sk1n/patch-1
Don't show “load more” if there is nothing more to load
This commit is contained in:
commit
4905ae5fea
2 changed files with 21 additions and 5 deletions
|
@ -671,6 +671,9 @@ export default {
|
||||||
.then(res => {
|
.then(res => {
|
||||||
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();
|
||||||
},
|
},
|
||||||
|
@ -688,7 +691,10 @@ export default {
|
||||||
.then(res => {
|
.then(res => {
|
||||||
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();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -702,7 +708,8 @@ export default {
|
||||||
if(res.data.length > 0) {
|
if(res.data.length > 0) {
|
||||||
this.following.push(...res.data);
|
this.following.push(...res.data);
|
||||||
this.followingCursor++;
|
this.followingCursor++;
|
||||||
} else {
|
}
|
||||||
|
if(res.data.length < 10) {
|
||||||
this.followingMore = false;
|
this.followingMore = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -719,7 +726,8 @@ export default {
|
||||||
if(res.data.length > 0) {
|
if(res.data.length > 0) {
|
||||||
this.followers.push(...res.data);
|
this.followers.push(...res.data);
|
||||||
this.followerCursor++;
|
this.followerCursor++;
|
||||||
} else {
|
}
|
||||||
|
if(res.data.length < 10) {
|
||||||
this.followerMore = false;
|
this.followerMore = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -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();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -922,7 +928,8 @@
|
||||||
if(res.data.length > 0) {
|
if(res.data.length > 0) {
|
||||||
this.following.push(...res.data);
|
this.following.push(...res.data);
|
||||||
this.followingCursor++;
|
this.followingCursor++;
|
||||||
} else {
|
}
|
||||||
|
if(res.data.length < 10) {
|
||||||
this.followingMore = false;
|
this.followingMore = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -939,7 +946,8 @@
|
||||||
if(res.data.length > 0) {
|
if(res.data.length > 0) {
|
||||||
this.followers.push(...res.data);
|
this.followers.push(...res.data);
|
||||||
this.followerCursor++;
|
this.followerCursor++;
|
||||||
} else {
|
}
|
||||||
|
if(res.data.length < 10) {
|
||||||
this.followerMore = false;
|
this.followerMore = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue