Skip to content

Commit

Permalink
fix(chat): undefined crash (#4964)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmcg authored Sep 21, 2022
1 parent 0fd78fc commit 00abf42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/views/chat/message/Message.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
/>
<div class="footer">
<MessageReactions :message="message" :emojiReaction="emojiReaction" />
<MessageReplies :replies="replies" v-if="replies.length" />
<MessageReplies :replies="replies" v-if="replies?.length" />
</div>
</div>
</div>

0 comments on commit 00abf42

Please sign in to comment.