Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
accidentally deleted fuel temp metric, added back in
  • Loading branch information
ema14006 committed Apr 16, 2019
1 parent 800a3d6 commit 285f33e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/statistics/statistics.component.ts
Expand Up @@ -84,7 +84,8 @@ export class StatisticsComponent implements OnInit {
try {
this.data.getDevMetrics(jsonToken).subscribe((data) => {

this.metric = data;
this.metric = data;
this.fuelTemp = this.metric.outputs[0].dps[0][1];
this.oilTemp = this.metric.outputs[1].dps[0][1];
this.pACurrent = this.metric.outputs[2].dps[0][1];
this.pBCurrent = this.metric.outputs[3].dps[0][1];
Expand Down

0 comments on commit 285f33e

Please sign in to comment.