Errata

Learn Angular: 4 Angular Projects

Errata for Learn Angular: 4 Angular Projects

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
http://proquest.safaribooksonline.com.proxy.montgomerylibrary.org/book/web-development/9781492068396
Bottom of page

The code at the bottom of the page is:

public onAddList(newList) {
this.lists = this.lists.concat(newList);
}

This should be changed to:
public onAddList(newList) {
this.loadLists();
}

The delete method requires the _id which is not supplied using the code shown.

JASON LEVINE  Apr 23, 2019