diff --git a/app/javascript/widget/components/PreChat/Form.vue b/app/javascript/widget/components/PreChat/Form.vue index 16a3c4ae0..86211f589 100644 --- a/app/javascript/widget/components/PreChat/Form.vue +++ b/app/javascript/widget/components/PreChat/Form.vue @@ -105,10 +105,13 @@ export default { return this.hasActiveCampaign || this.preChatFormEnabled; }, headerMessage() { + if (this.preChatFormEnabled) { + return this.options.preChatMessage; + } if (this.hasActiveCampaign) { return this.$t('PRE_CHAT_FORM.CAMPAIGN_HEADER'); } - return this.options.preChatMessage; + return ''; }, preChatFields() { return this.preChatFormEnabled ? this.options.preChatFields : [];