We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e57183 commit e3519c0Copy full SHA for e3519c0
MyApp.Client/src/app/todomvc/todos.component.html
@@ -110,4 +110,4 @@
110
<div class="mt-8 flex justify-center gap-x-4">
111
<src-page path="todomvc/todos.component.html"></src-page>
112
</div>
113
-</app-page>
+</app-page>
MyApp.Client/src/app/todomvc/todos.component.ts
@@ -109,7 +109,7 @@ export class TodoMvcComponent implements OnInit {
109
}
startEditing(todo: Todo): void {
- this.editingTodoId = todo.id!;
+ this.editingTodoId = todo.id;
this.editingTodoText = todo.text;
114
115
@@ -131,7 +131,7 @@ export class TodoMvcComponent implements OnInit {
131
132
});
133
} else {
134
- this.deleteTodo(todo.id!);
+ this.deleteTodo(todo.id);
135
136
this.editingTodoId = null;
137
0 commit comments