Skip to content

Commit

Permalink
fix(MetaService): fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jgodi committed May 20, 2018
1 parent 5930b03 commit c0ae0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/MetaService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class MetaService {
const result: BullhornMetaResponse = response.data;
this.parse(result);
this.label = result.label;
return this.extract([...result.fields.map((x) => x.name)]);
return this.extract([...result.fields.map((x: Field) => x.name)]);
}
return this.extract(requested);
}
Expand Down

0 comments on commit c0ae0c2

Please sign in to comment.