fix compiler error

This commit is contained in:
kakkokari-gtyih 2024-09-06 18:27:48 +09:00
parent b1b6855c83
commit c8583b74dd
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div :class="$style.root">
<XReaction v-for="[reaction, count] in reactions" :key="reaction" :reaction="reaction" :count="count" :isInitial="initialReactions.has(reaction)" :note="note" @reactionToggled="onMockToggleReaction"/>
<slot v-if="hasMoreReactions" name="more"/>
<slot v-if="hasMoreReactions" name="more"></slot>
</div>
</template>