[Client] Better pagination

Fix #4628
Close #4629
This commit is contained in:
syuilo
2019-04-08 14:17:44 +09:00
parent 1c57e6f80a
commit 1e166490d9
24 changed files with 59 additions and 56 deletions

View File

@ -27,12 +27,12 @@ export default Vue.extend({
notes.pop();
return {
notes: notes,
cursor: notes[notes.length - 1].id
more: true
};
} else {
return {
notes: notes,
cursor: null
more: false
};
}
})