Skip to content

Commit

Permalink
Merge pull request #97 from bibekgg/master
Browse files Browse the repository at this point in the history
Fix Issue 96
  • Loading branch information
mahmut-gundogdu authored Nov 20, 2022
2 parents b75ce37 + 2376c48 commit 3737a86
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ export class AbstractValidationDirective implements OnDestroy {
get blueprints(): Validation.Blueprints {
return {
...BLUEPRINTS,
...(this._blueprints || this.parent.blueprints || this.config.blueprints || {}),
...(this.config.blueprints || {}),
...(this.parent.blueprints || {}),
...(this._blueprints || {}),
};
}

Expand Down

0 comments on commit 3737a86

Please sign in to comment.