This repository was archived by the owner on Dec 4, 2017. It is now read-only.
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
ToH Ch7:HTTP - missing instructions to edit method goBack() in hero-detail.component.ts #1476
Closed
Description
At the end of Ch6, the goBack method in app/hero-detail.component.ts looks like:
goBack() {
window.history.back();
}
Instructions should be added to modify this method to:
goBack(savedHero: Hero = null) {
this.close.emit(savedHero);
if (this.navigated) { window.history.back(); }
}
so that it can be used as shown in the save method:
this.goBack(hero);
Metadata
Metadata
Assignees
Labels
No labels