Skip to content

Commit 75e927f

Browse files
committed
lint
1 parent c6e1690 commit 75e927f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/plots/cartesian/set_convert.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,7 @@ module.exports = function setConvert(ax, fullLayout) {
400400
var t = trace;
401401
var valsTransform = sortLib.transpose([t.open, t.high, t.low, t.close]);
402402
arrays.push(valsTransform);
403-
}
404-
else if(trace.z) {
403+
} else if(trace.z) {
405404
if(axLetter === 'x') {
406405
arrays.push(sortLib.transpose(trace.z));
407406
} else {

test/jasmine/tests/hover_label_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5863,7 +5863,7 @@ describe('hovermode: (x|y)unified', function() {
58635863
var mockOhlc = require('@mocks/finance_multicategory.json');
58645864
var mockCopy = Lib.extendDeep({}, mockOhlc);
58655865
mockCopy.layout.hovermode = 'x unified';
5866-
debugger;
5866+
58675867
Plotly.newPlot(gd, mockCopy)
58685868
.then(function(gd) {
58695869
_hover(gd, {curveNumber: 0, pointNumber: 0});

0 commit comments

Comments
 (0)