Skip to content

Commit

Permalink
fix(validation-controller): fix revalidateErrors method
Browse files Browse the repository at this point in the history
fixes #456
  • Loading branch information
manuel-guilbault authored and jdanyow committed Aug 12, 2017
1 parent 61a9caf commit bcf8a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export class ValidationController {
if (rule.__manuallyAdded__) {
continue;
}
const rules = [rule];
const rules = [[rule]];
this.validate({ object, propertyName, rules });
}
}
Expand Down

0 comments on commit bcf8a46

Please sign in to comment.