Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 9d45fe8

Browse files
committed
docs(cookbook/graphql): fix lint error
1 parent e701ad3 commit 9d45fe8

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

public/docs/_examples/heroes-graphql/ts/app/hero-detail.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ export class HeroDetailComponent implements OnInit {
5656

5757
// #docregion save
5858
save(): void {
59-
6059
this.apollo.mutate({
6160
mutation: gql`
6261
mutation updateHero($id: Int!, $name: String!) {

public/docs/_examples/heroes-graphql/ts/app/hero-search.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ export class HeroSearchComponent implements OnInit {
5555
id
5656
name
5757
}
58-
}
59-
`,
58+
}`,
6059
variables: {
6160
search: this.searchTerms
6261
.debounceTime(300) // wait 300ms after each keystroke before considering the term

0 commit comments

Comments
 (0)