Fix: Make pre-chat message minimum length to 1 (#1898)

This commit is contained in:
Nithin David Thomas
2021-03-13 11:46:08 +05:30
committed by GitHub
parent 6c87001a0e
commit 2a28e05a77

View File

@@ -85,7 +85,7 @@ export default {
const messageValidation = {
message: {
required,
minLength: minLength(10),
minLength: minLength(1),
},
};
if (this.options.requireEmail) {