Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sagely1 committed Apr 14, 2023
1 parent 394a952 commit e016bf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export class ScoreChartComponent extends BaseChartComponent {
.attr('font-size', '12px')
.attr('fill', this.barColor);

if (this._score !== undefined) {
if (this._score !== undefined)
label.text(this.helperService.roundNumber(this._score, 2));

const labelBox = label.node().getBBox();
Expand Down

0 comments on commit e016bf3

Please sign in to comment.