Skip to content

Commit 3a9aa1b

Browse files
committed
fix linting
1 parent e8517a7 commit 3a9aa1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/traces/funnelarea/defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
5555
moduleHasTextangle: false,
5656
moduleHasInsideanchor: false
5757
});
58-
} else if (textInfo === 'none') {
58+
} else if(textInfo === 'none') {
5959
coerce('textposition', 'none');
6060
}
6161

src/traces/pie/defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function supplyDefaults(traceIn, traceOut, defaultColor, layout) {
111111
if(textposition === 'inside' || textposition === 'auto' || Array.isArray(textposition)) {
112112
coerce('insidetextorientation');
113113
}
114-
} else if (textInfo === 'none') {
114+
} else if(textInfo === 'none') {
115115
coerce('textposition', 'none');
116116
}
117117

0 commit comments

Comments
 (0)