You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2025-10-signal-forms-part2/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: 'Angular Signal Forms Part 2: Advanced Validation and Schema Patterns'
3
3
author: Danny Koppenhagen and Ferdinand Malcher
4
4
mail: dannyferdigravatar@fmalcher.de # Gravatar
5
5
published: 2025-10-15
6
-
lastModified: 2025-10-30
6
+
lastModified: 2025-11-09
7
7
keywords:
8
8
- Angular
9
9
- Signals
@@ -451,17 +451,15 @@ While client-side validation catches most errors before submission, server-side
451
451
Signal Forms provide an elegant way to handle these errors and display them to users with proper field-level feedback.
452
452
When using the `submit()` function, we can return an array of validation errors from the submission callback to assign them to specific fields or to the form itself.
453
453
454
-
The helper type `WithField` ensures that each error contains a reference to the field it belongs to.
454
+
The type `ValidationErrorWithField` ensures that each error contains a reference to the field it belongs to.
0 commit comments