Increate number of close events and follow group events

Closes #930

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-11-22 09:29:01 +01:00
parent 83e8136b0e
commit 1d1574b426
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 2 additions and 2 deletions

View File

@ -283,7 +283,7 @@
<b-icon class="clickable" icon="pencil" size="is-small" />
</router-link>
</p>
<multi-card :events="closeEvents.elements.slice(0, 3)" />
<multi-card :events="closeEvents.elements.slice(0, 4)" />
</section>
<hr
role="presentation"
@ -605,7 +605,7 @@ export default class Home extends Vue {
.map(({ event: { id: event_id } }) => event_id)
.includes(id)
)
.slice(0, 3);
.slice(0, 4);
}
}
</script>