Skip to content

Commit

Permalink
fix(core/forms): validation message will always be updated by the pip…
Browse files Browse the repository at this point in the history
…eline on multiple conditions
  • Loading branch information
sara-re authored and sara-gnucoop committed Dec 4, 2023
1 parent cf56b42 commit f8723cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/core/forms/src/as-validation-errors-string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {AjfNodeInstance} from './interface/nodes-instances/node-instance';
/**
* It casts an AjfNodeInstance as a string of all validation errors of an AjfFieldInstance.
*/
@Pipe({name: 'ajfAsFieldInstanceErrors'})
@Pipe({name: 'ajfAsFieldInstanceErrors', pure: false})
export class AjfAsFieldInstanceErrorsPipe implements PipeTransform {
transform(instance: AjfNodeInstance): string | null {
const fieldInstance = instance as AjfFieldInstance;
Expand Down

0 comments on commit f8723cf

Please sign in to comment.