Update typebot.service.ts - element.underline change ~ for *

There's no underline in WhatsApp ~ use strikethrough instead, I switched to * bold.
This commit is contained in:
Jean Carlo Nascimento 2023-11-12 19:11:47 -03:00 committed by GitHub
parent 8fe75cd210
commit 37f1620f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -323,7 +323,7 @@ export class TypebotService {
} }
if (element.underline) { if (element.underline) {
text = `~${text}~`; text = `*${text}*`;
} }
if (element.url) { if (element.url) {