We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
submitItem event should be submit in https://ng-girls.gitbook.io/todo-list-tutorial/more-workshops/crud_http/get
And that to make it consistent with the the first part of the tutorial: https://ng-girls.gitbook.io/todo-list-tutorial/workshop-todo-list/add-items
<div class="todo-app"> <app-input-button-unit (submitItem)="addItem($event)"></app-input-button-unit> <ul *ngIf="todoList | async as todoItems"> <li *ngFor="let todoItem of todoItems"> <app-todo-item [item]="todoItem" (remove)="removeItem($event)" (update)="updateItem($event.item, $event.changes)"></app-todo-item> </li> </ul> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
submitItem event should be submit in https://ng-girls.gitbook.io/todo-list-tutorial/more-workshops/crud_http/get
And that to make it consistent with the the first part of the tutorial:
https://ng-girls.gitbook.io/todo-list-tutorial/workshop-todo-list/add-items
The text was updated successfully, but these errors were encountered: