Skip to content

Commit f733505

Browse files
committed
Fix missing end of file newline
- In the `attributes.js` file for the traces `scatter3d`, `scattergl`, and `splom`
1 parent f348454 commit f733505

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/traces/scatter3d/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ var attrs = (module.exports = overrideAll(
178178
'nested'
179179
));
180180

181-
attrs.x.editType = attrs.y.editType = attrs.z.editType = 'calc+clearAxisTypes';
181+
attrs.x.editType = attrs.y.editType = attrs.z.editType = 'calc+clearAxisTypes';

src/traces/scattergl/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ attrs.x.editType = attrs.y.editType = attrs.x0.editType = attrs.y0.editType = 'c
111111
attrs.hovertemplate = scatterAttrs.hovertemplate;
112112
attrs.hovertemplatefallback = scatterAttrs.hovertemplatefallback;
113113
attrs.texttemplate = scatterAttrs.texttemplate;
114-
attrs.texttemplatefallback = scatterAttrs.texttemplatefallback;
114+
attrs.texttemplatefallback = scatterAttrs.texttemplatefallback;

src/traces/splom/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ module.exports = {
183183
},
184184

185185
opacity: scatterGlAttrs.opacity
186-
};
186+
};

0 commit comments

Comments
 (0)