Skip to content

Commit

Permalink
fix(angular-formly): add missing errorInit prop to formly bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfeldpausch committed Dec 6, 2023
1 parent bc3c1ab commit 77ad994
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
[step]="props.step"
[errors]="props.errors"
[errorUpdate]="props.errorUpdate"
[errorInit]="props.errorInit"
[nativeAttributes]="props.nativeAttributes"
>
</cat-datepicker>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
[type]="props.type"
[errors]="props.errors"
[errorUpdate]="props.errorUpdate"
[errorInit]="props.errorInit"
[hint]="props.hint"
[nativeAttributes]="props.nativeAttributes"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
[noItems]="props.noItems"
[errors]="props.errors"
[errorUpdate]="props.errorUpdate"
[errorInit]="props.errorInit"
[nativeAttributes]="props.nativeAttributes"
[connector]="props.connector"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
[readonly]="props.readonly"
[errors]="props.errors"
[errorUpdate]="props.errorUpdate"
[errorInit]="props.errorInit"
[hint]="props.hint"
[nativeAttributes]="props.nativeAttributes"
>
Expand Down

0 comments on commit 77ad994

Please sign in to comment.