Merge pull request #479 from Safelite/bugfix/CSR-606
CSR-606: expand regex of vin-format validation rule to allow lowercas…
This commit is contained in:
commit
d73bc4e733
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ defineRule(
|
||||||
);
|
);
|
||||||
defineRule(
|
defineRule(
|
||||||
"vin-format",
|
"vin-format",
|
||||||
regex(/^[A-HJ-NPR-Z0-9]{17}$/, errorMessages.VIN_FORMAT)
|
regex(/^[a-hA-Hj-nJ-NpPr-zR-Z0-9]{17}$/, errorMessages.VIN_FORMAT)
|
||||||
);
|
);
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue