We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b75ce37 + 2376c48 commit 3737a86Copy full SHA for 3737a86
packages/core/src/lib/abstracts/abstract-validation.directive.ts
@@ -62,7 +62,9 @@ export class AbstractValidationDirective implements OnDestroy {
62
get blueprints(): Validation.Blueprints {
63
return {
64
...BLUEPRINTS,
65
- ...(this._blueprints || this.parent.blueprints || this.config.blueprints || {}),
+ ...(this.config.blueprints || {}),
66
+ ...(this.parent.blueprints || {}),
67
+ ...(this._blueprints || {}),
68
};
69
}
70
0 commit comments