projects
/
examples
/
angular-tour-of-heroes
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee578cc
)
Fixed test-case for HeroDetailComponent by making it easier testable
author
Kai Moritz
<kai@juplo.de>
Mon, 11 May 2020 15:50:56 +0000
(17:50 +0200)
committer
Kai Moritz
<kai@juplo.de>
Mon, 11 May 2020 16:23:16 +0000
(18:23 +0200)
src/app/hero-detail/hero-detail.component.ts
patch
|
blob
|
history
diff --git
a/src/app/hero-detail/hero-detail.component.ts
b/src/app/hero-detail/hero-detail.component.ts
index
c252bcf
..
aef0da5
100644
(file)
--- a/
src/app/hero-detail/hero-detail.component.ts
+++ b/
src/app/hero-detail/hero-detail.component.ts
@@
-25,8
+25,10
@@
export class HeroDetailComponent implements OnInit {
}
getHero(): void {
- const id = +this.route.snapshot.paramMap.get('id');
- this.heroService.getHero(id).subscribe(hero => this.hero = hero);
+ this.route.params.subscribe(params => {
+ const id: number = +params.id;
+ this.heroService.getHero(id).subscribe(hero => this.hero = hero);
+ });
}
goBack(): void {