Skip to content

Commit

Permalink
fix(graph): samples line type error
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Oct 23, 2016
1 parent 04304bb commit 9178fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/build/graph/graph.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class GraphComponent implements OnInit {
return this.xScaleTime.get()(
i * (settings.gameTime / (settings.matchServer.sampleSize - 1)));
})
.y((d) => {
.y((d: any) => {
return this.yScaleSamples.get()(d);
});

Expand Down

0 comments on commit 9178fc5

Please sign in to comment.