Skip to content

Commit b17d495

Browse files
committed
signalforms part1: fix type for value signal
1 parent 4b22c70 commit b17d495

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blog/2025-10-signal-forms-part1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Angular Signal Forms Part 1: Getting Started with the Basics"
33
author: Danny Koppenhagen and Ferdinand Malcher
44
mail: [email protected] # Gravatar
55
published: 2025-10-13
6-
lastModified: 2025-10-16
6+
lastModified: 2025-10-22
77
keywords:
88
- Angular
99
- Signals
@@ -121,7 +121,7 @@ It provides several reactive properties that we can use in our templates and com
121121

122122
| State | Type | Description |
123123
| ----------------- | --------------------------- | ------------------------------------------------ |
124-
| `value` | `Signal<T>` | current value of this part of the field tree |
124+
| `value` | `WritableSignal<TValue>` | current value of this part of the field tree |
125125
| `valid` | `Signal<boolean>` | `true` if the field passes all validations |
126126
| `touched` | `Signal<boolean>` | `true` if the user has interacted with the field |
127127
| `errors` | `Signal<ValidationError[]>` | array of validation errors |

0 commit comments

Comments
 (0)