mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
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 = {
|
||||
message: {
|
||||
required,
|
||||
minLength: minLength(10),
|
||||
minLength: minLength(1),
|
||||
},
|
||||
};
|
||||
if (this.options.requireEmail) {
|
||||
|
||||
Reference in New Issue
Block a user