Fetch more reactins

This commit is contained in:
syuilo 2019-09-03 07:15:53 +09:00
parent 03f87140b3
commit f36d88246a
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ export default Vue.extend({
openDetails() {
if (this.$root.isMobile) return;
this.$root.api('notes/reactions', {
noteId: this.note.id
noteId: this.note.id,
limit: 30
}).then((reactions: any[]) => {
const users = reactions.filter(x => x.type === this.reaction)
.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())