We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea9562 commit 7da856aCopy full SHA for 7da856a
apps/webapp/app/components/code/QueryResultsChart.tsx
@@ -1121,7 +1121,7 @@ function createYAxisFormatter(
1121
if (value === 0) return "0 B";
1122
// Use consistent unit for all ticks based on max value
1123
const i = Math.min(
1124
- Math.floor(Math.log(Math.abs(maxVal || 1)) / Math.log(divisor)),
+ Math.max(0, Math.floor(Math.log(Math.abs(maxVal || 1)) / Math.log(divisor))),
1125
units.length - 1
1126
);
1127
const scaled = value / Math.pow(divisor, i);
0 commit comments