diff --git a/app/javascript/widget/components/ChatInputWrap.vue b/app/javascript/widget/components/ChatInputWrap.vue index c423ab220..28d14f1e5 100755 --- a/app/javascript/widget/components/ChatInputWrap.vue +++ b/app/javascript/widget/components/ChatInputWrap.vue @@ -46,8 +46,7 @@ export default { }), showAttachment() { return ( - this.shouldShowFilePicker && - this.hasAttachmentsEnabled && + (this.shouldShowFilePicker || this.hasAttachmentsEnabled) && this.userInput.length === 0 ); },