Skip to content

Commit 4856b32

Browse files
author
mgrauer
authored
Merge pull request #472 from Kitware/clean_trackerdash_markerline
fix(TrackerDash): remove black markerline
2 parents b17d7d3 + f7cd056 commit 4856b32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/candela/components/TrackerDash/ErrorBulletWidget.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ class ErrorBulletWidget extends VisComponent {
2323
chartData () {
2424
return {
2525
ranges: this.trend.incompleteThreshold ? [0, 0, this.trend.max] : [this.trend.warning, this.trend.fail, this.trend.max],
26-
measures: [Math.round(Math.min(this.result.current, this.trend.max) * 10000) / 10000]
26+
measures: [Math.round(Math.min(this.result.current, this.trend.max) * 10000) / 10000],
27+
markerLines: []
2728
};
2829
}
2930

0 commit comments

Comments
 (0)