chore(toh): fix CI errors

This commit is contained in:
Filipe Silva 2016-08-18 19:30:34 +01:00
parent e9a41bac47
commit bcf7893e3e
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
// #enddocregion empty-class // #enddocregion empty-class
import { Hero } from './hero';
import { HEROES } from './mock-heroes'; import { HEROES } from './mock-heroes';
// #docregion empty-class, getHeroes-stub // #docregion empty-class, getHeroes-stub

View File

@ -55,4 +55,4 @@ export class HeroSearchComponent implements OnInit {
let link = ['/detail', hero.id]; let link = ['/detail', hero.id];
this.router.navigate(link); this.router.navigate(link);
} }
} }