fix: use unique key for my galleries

This commit is contained in:
ThatOneCalculator 2023-07-06 12:26:37 -07:00
parent aa1482224c
commit e61b229229
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 3 additions and 3 deletions

View File

@ -92,9 +92,9 @@
> >
<div class="vfpdbgtk"> <div class="vfpdbgtk">
<MkGalleryPostPreview <MkGalleryPostPreview
v-for="post in items" v-for="mypost in items"
:key="post.id" :key="mypost.id"
:post="post" :post="mypost"
class="post" class="post"
/> />
</div> </div>