Fix: Make pre-chat message minimum length to 1 (#1898)
This commit is contained in:
committed by
GitHub
parent
6c87001a0e
commit
2a28e05a77
@@ -85,7 +85,7 @@ export default {
|
|||||||
const messageValidation = {
|
const messageValidation = {
|
||||||
message: {
|
message: {
|
||||||
required,
|
required,
|
||||||
minLength: minLength(10),
|
minLength: minLength(1),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
if (this.options.requireEmail) {
|
if (this.options.requireEmail) {
|
||||||
|
|||||||
Reference in New Issue
Block a user