Skip to content

Commit

Permalink
feat: add support for incoming messages using quick reply buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
saby22 committed Oct 24, 2024
1 parent e9b448a commit d1088a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/components/Activities/WhatsAppArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@
v-else-if="whatsapp.content_type == 'text'"
v-html="formatWhatsAppMessage(whatsapp.message)"
/>
<div
v-else-if="whatsapp.content_type == 'button'"
v-html="formatWhatsAppMessage(whatsapp.message)"
/>
<div v-else-if="whatsapp.content_type == 'image'">
<img
:src="whatsapp.attach"
Expand Down

0 comments on commit d1088a3

Please sign in to comment.