chore: Bump up character limit for email channel (#10082)

This commit is contained in:
Sojan Jose
2024-09-06 20:11:18 -07:00
committed by GitHub
parent 185a122ec7
commit bb74c621b5
2 changed files with 4 additions and 0 deletions

View File

@@ -237,6 +237,9 @@ export default {
if (this.isASmsInbox) {
return MESSAGE_MAX_LENGTH.TWILIO_SMS;
}
if (this.isAnEmailChannel) {
return MESSAGE_MAX_LENGTH.EMAIL;
}
return MESSAGE_MAX_LENGTH.GENERAL;
},
showFileUpload() {