なんかちょっとしたbug fix

Signed-off-by: mattyatea <mattyacocacora0@gmail.com>
This commit is contained in:
mattyatea 2023-12-31 18:49:18 +09:00
parent 74e45b13eb
commit c6cccd791d
No known key found for this signature in database
GPG Key ID: 068E54E2C33BEF9A
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div class="_gaps_m" :class="$style.root">
<MkPagination v-slot="{items}" :key="user.id" :pagination="Pagination">
<div v-for="item in items" :key="item.id" :class="$style.note">
<MkSwitch v-model="item.isAbuseReport" @update:modelValue="pushAbuseReportNote($event,item.id)"></MkSwitch>
<MkSwitch :modelValue="item.id === initialNoteId" @update:modelValue="pushAbuseReportNote($event,item.id)"></MkSwitch>
<MkAvatar :user="item.user" preview/>
<MkNoteSimple :note="item"/>
</div>