mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
setting the `hero` property as an optional property fixes the compilation error: `Property 'hero' has no initializer and is not definitely assigned in the constructor` when having the ts transpiler set to "strict" mode. PR Close #40942
This commit is contained in:
parent
5238ad72c0
commit
2de7eef92e
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ import { Hero } from '../hero';
|
|||
})
|
||||
export class HeroDetailComponent implements OnInit {
|
||||
// #docregion input-hero
|
||||
@Input() hero: Hero;
|
||||
@Input() hero?: Hero;
|
||||
// #enddocregion input-hero
|
||||
|
||||
constructor() { }
|
||||
|
|
|
|||
Loading…
Reference in a new issue