Skip to content

Commit

Permalink
Merge pull request #472 from Kitware/clean_trackerdash_markerline
Browse files Browse the repository at this point in the history
fix(TrackerDash): remove black markerline
  • Loading branch information
mgrauer committed Dec 8, 2016
2 parents b17d7d3 + f7cd056 commit 4856b32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/candela/components/TrackerDash/ErrorBulletWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class ErrorBulletWidget extends VisComponent {
chartData () {
return {
ranges: this.trend.incompleteThreshold ? [0, 0, this.trend.max] : [this.trend.warning, this.trend.fail, this.trend.max],
measures: [Math.round(Math.min(this.result.current, this.trend.max) * 10000) / 10000]
measures: [Math.round(Math.min(this.result.current, this.trend.max) * 10000) / 10000],
markerLines: []
};
}

Expand Down

0 comments on commit 4856b32

Please sign in to comment.