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

View file

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