Skip to content

Commit b321d7b

Browse files
committed
fix: update form control name in event-binding documentation for clarity
- Changed the form control name from "name" to "title" in the event-binding documentation to accurately reflect the intended input field.
1 parent 0de4704 commit b321d7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/de/create-task/event-binding.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The `ngSubmit` directive ensures that Angular handles the form submission proper
7070
<form [formGroup]="form" (ngSubmit)="submit()" class="flex flex-col gap-2 m-auto">
7171
<fieldset class="fieldset w-full">
7272
<legend class="fieldset-legend">Name</legend>
73-
<input formControlName="name" type="text" class="input w-full" placeholder="Type here" />
73+
<input formControlName="title" type="text" class="input w-full" placeholder="Type here" />
7474
</fieldset>
7575

7676
<fieldset class="fieldset">

0 commit comments

Comments
 (0)