Skip to content

Commit

Permalink
refactor (form-events): use getRawValue rather than value for `al…
Browse files Browse the repository at this point in the history
…lEventsSignal`
  • Loading branch information
michael-small authored and msmallest committed Nov 22, 2024
1 parent 51a473f commit 7e0faf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ngxtension/form-events/src/form-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function allEventsSignal<T>(
): Signal<FormEventData<T>> {
return toSignal(allEventsObservable(form), {
initialValue: {
value: form.value,
value: form.getRawValue(),
status: form.status,
pristine: form.pristine,
touched: form.touched,
Expand Down

0 comments on commit 7e0faf3

Please sign in to comment.