Skip to content

Commit

Permalink
fix(ChatReply): disable links in reply bar if user has one in their n…
Browse files Browse the repository at this point in the history
…ame (#597)
  • Loading branch information
WanderingHogan committed Dec 10, 2021
1 parent 77725ee commit f8fa40c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions components/tailored/core/chatbar/reply/Reply.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<div v-if="ui.replyChatbarContent.id" class="is-chatbar-reply">
<VueMarkdown :source="`**${$t('conversation.reply_to')} ${ui.replyChatbarContent.from}:** ${ui.replyChatbarContent.payload}`" class="markdown" />
<div class="reply-close" @click="setReplyChatbarContent">
<x-icon size="1x" />
</div>
</div>
<VueMarkdown
:linkify="false"
:source="`**${$t('conversation.reply_to')} ${ui.replyChatbarContent.from}:** ${ui.replyChatbarContent.payload}`"
class="markdown"
/>
<div class="reply-close" @click="setReplyChatbarContent">
<x-icon size="1x" />
</div>
</div>

0 comments on commit f8fa40c

Please sign in to comment.