Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1f99ab6

Browse files
committedMar 28, 2017
fix lint
1 parent e9463c2 commit 1f99ab6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/unit/specs/VueFormGenerator.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ describe("VueFormGenerator.vue", () => {
903903
label: "Name",
904904
model: "name",
905905
validator(value) {
906-
return new Promise((resolve, reject) => {
906+
return new Promise(resolve => {
907907
setTimeout(() => {
908908
if (value.length >= 3)
909909
resolve();

0 commit comments

Comments
 (0)
Please sign in to comment.