From bcf7893e3ed1752a231ace0fe9477746f4cc99f8 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 18 Aug 2016 19:30:34 +0100 Subject: [PATCH] chore(toh): fix CI errors --- public/docs/_examples/toh-4/ts/app/hero.service.1.ts | 1 + public/docs/_examples/toh-6/ts/app/hero-search.component.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/public/docs/_examples/toh-4/ts/app/hero.service.1.ts b/public/docs/_examples/toh-4/ts/app/hero.service.1.ts index 86c8aaadad..15e4c44285 100644 --- a/public/docs/_examples/toh-4/ts/app/hero.service.1.ts +++ b/public/docs/_examples/toh-4/ts/app/hero.service.1.ts @@ -4,6 +4,7 @@ import { Injectable } from '@angular/core'; // #enddocregion empty-class +import { Hero } from './hero'; import { HEROES } from './mock-heroes'; // #docregion empty-class, getHeroes-stub diff --git a/public/docs/_examples/toh-6/ts/app/hero-search.component.ts b/public/docs/_examples/toh-6/ts/app/hero-search.component.ts index be071f0eba..384002098d 100644 --- a/public/docs/_examples/toh-6/ts/app/hero-search.component.ts +++ b/public/docs/_examples/toh-6/ts/app/hero-search.component.ts @@ -55,4 +55,4 @@ export class HeroSearchComponent implements OnInit { let link = ['/detail', hero.id]; this.router.navigate(link); } -} \ No newline at end of file +}