Skip to content

Commit

Permalink
(fix) remove message animation on _id change
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine92190 committed Jul 24, 2021
1 parent 173ffdc commit 6fb85c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Room/Room.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</infinite-loading>
</transition>
<transition-group :key="roomId" name="vac-fade-message">
<div v-for="(m, i) in messages" :key="m._id">
<div v-for="(m, i) in messages" :key="`m-${i}`">
<message
:current-user-id="currentUserId"
:message="m"
Expand Down

0 comments on commit 6fb85c0

Please sign in to comment.