docs: Update adev/src/content/guide/forms/signals/models.md

Co-authored-by: Matthieu Riegler <kyro38@gmail.com>
(cherry picked from commit 29223c440f)
This commit is contained in:
Kirill Cherkashin 2025-12-01 16:44:12 -05:00 committed by Pawel Kozlowski
parent 1ee0ff8cfb
commit e95d2e3a34

View file

@ -268,7 +268,7 @@ export class UserComponent {
userForm = form(this.userModel)
setName(name: string) {
userForm.name().value.set(name);
this.userForm.name().value.set(name);
// Input automatically displays 'Bob'
}
}