Skip to content

Commit 3737a86

Browse files
Merge pull request #97 from bibekgg/master
Fix Issue 96
2 parents b75ce37 + 2376c48 commit 3737a86

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/core/src/lib/abstracts/abstract-validation.directive.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ export class AbstractValidationDirective implements OnDestroy {
6262
get blueprints(): Validation.Blueprints {
6363
return {
6464
...BLUEPRINTS,
65-
...(this._blueprints || this.parent.blueprints || this.config.blueprints || {}),
65+
...(this.config.blueprints || {}),
66+
...(this.parent.blueprints || {}),
67+
...(this._blueprints || {}),
6668
};
6769
}
6870

0 commit comments

Comments
 (0)