fix: Adds support for multiple file uploads in whatsapp inbox (#6763)

This commit is contained in:
Nithin David Thomas
2023-03-28 13:10:16 +05:30
committed by GitHub
parent 3535a1a708
commit d082aa50a8

View File

@@ -452,7 +452,12 @@ export default {
return !this.isOnPrivateNote && this.isAnEmailChannel;
},
enableMultipleFileUpload() {
return this.isAnEmailChannel || this.isAWebWidgetInbox || this.isAPIInbox;
return (
this.isAnEmailChannel ||
this.isAWebWidgetInbox ||
this.isAPIInbox ||
this.isAWhatsAppChannel
);
},
isSignatureEnabledForInbox() {
return !this.isPrivate && this.isAnEmailChannel && this.sendWithSignature;