feat: Ability to reply to specific tweets (#1117)

Ability to choose a specific tweet to reply to

Fixes #982
Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
This commit is contained in:
Sojan Jose
2020-08-11 09:57:42 +05:30
committed by GitHub
parent a6a62d92bf
commit 4216d63311
23 changed files with 290 additions and 38 deletions

View File

@@ -50,3 +50,7 @@ body {
}
}
}
.cursor-pointer {
cursor: pointer;
}

View File

@@ -4,7 +4,7 @@
v-if="!isCards && !isOptions && !isForm && !isArticle"
class="chat-bubble agent"
>
<span v-html="formatMessage(message)"></span>
<span v-html="formatMessage(message, false)"></span>
<email-input
v-if="isTemplateEmail"
:message-id="messageId"

View File

@@ -2,7 +2,7 @@
<div
class="chat-bubble user"
:style="{ background: widgetColor }"
v-html="formatMessage(message)"
v-html="formatMessage(message, false)"
/>
</template>