fix: Adds support for multiple file uploads in whatsapp inbox (#6763)
This commit is contained in:
committed by
GitHub
parent
3535a1a708
commit
d082aa50a8
@@ -452,7 +452,12 @@ export default {
|
|||||||
return !this.isOnPrivateNote && this.isAnEmailChannel;
|
return !this.isOnPrivateNote && this.isAnEmailChannel;
|
||||||
},
|
},
|
||||||
enableMultipleFileUpload() {
|
enableMultipleFileUpload() {
|
||||||
return this.isAnEmailChannel || this.isAWebWidgetInbox || this.isAPIInbox;
|
return (
|
||||||
|
this.isAnEmailChannel ||
|
||||||
|
this.isAWebWidgetInbox ||
|
||||||
|
this.isAPIInbox ||
|
||||||
|
this.isAWhatsAppChannel
|
||||||
|
);
|
||||||
},
|
},
|
||||||
isSignatureEnabledForInbox() {
|
isSignatureEnabledForInbox() {
|
||||||
return !this.isPrivate && this.isAnEmailChannel && this.sendWithSignature;
|
return !this.isPrivate && this.isAnEmailChannel && this.sendWithSignature;
|
||||||
|
|||||||
Reference in New Issue
Block a user