Skip to content

Commit 48cf797

Browse files
committed
lint in parcoords/
1 parent 6e2da35 commit 48cf797

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/traces/parcoords/attributes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ module.exports = {
114114
line: extendFlat({editType: 'calc'},
115115
colorScaleAttrs('line', {
116116
// the default autocolorscale isn't quite usable for parcoords due to context ambiguity around 0 (grey, off-white)
117-
// autocolorscale therefore defaults to false too, to avoid being overridden by the blue-white-red autocolor palette
117+
// autocolorscale therefore defaults to false too, to avoid being overridden by the blue-white-red autocolor palette
118118
colorscaleDflt: 'Viridis',
119119
autoColorDflt: false,
120120
editTypeOverride: 'calc'

src/traces/parcoords/calc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ function constHalf(len) {
4646
}
4747

4848
function convertTypedArray(a) {
49-
return (Lib.isTypedArray(a)) ? Array.prototype.slice.call(a) : a;
49+
return Lib.isTypedArray(a) ? Array.prototype.slice.call(a) : a;
5050
}

0 commit comments

Comments
 (0)