Skip to content

Commit 1876e8c

Browse files
committed
remove unnecessary commentout
1 parent 370e61a commit 1876e8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plots/cartesian/autorange.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ function findExtremes(ax, data, opts) {
385385
// more than an order of mag, clip it to one order. This is so
386386
// we don't have non-positive errors or absurdly large lower
387387
// range due to rounding errors
388-
// if(isLog && vmin < vmax / 10) vmin = vmax / 10;
388+
if(isLog && vmin < vmax / 10) vmin = vmax / 10;
389389

390390
dmin = ax.c2l(vmin);
391391
dmax = ax.c2l(vmax);

0 commit comments

Comments
 (0)