Skip to content

Commit

Permalink
Linter love
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosabalde committed Jan 24, 2025
1 parent d2c6bde commit da6f3f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/webpack/src/js/chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ class Chart {
// metrics.
y.push(
this.metric.flag === 'b' ?
BigInt(`0x${sample[1]}`).toString(2).split('').filter(bit => bit === '1').length :
sample[1]);
BigInt(`0x${sample[1]}`).toString(2).split('').filter(bit => bit === '1').length :
sample[1]);
});
return [x, y];
}
Expand Down

0 comments on commit da6f3f3

Please sign in to comment.