Skip to content

Commit 35d1351

Browse files
committed
id should be a string not a length-1 array
- this didn't lead to any bugs, as var a = ['x' + 'y'] var b = {} b[a] = 1 // => {'xy': 1}
1 parent a8838da commit 35d1351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/splom/defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function handleAxisDefaults(traceIn, traceOut, layout, coerce) {
8989
// fill in splom subplot keys
9090
for(i = 0; i < axLength; i++) {
9191
for(j = 0; j < axLength; j++) {
92-
var id = [xaxes[i] + yaxes[j]];
92+
var id = xaxes[i] + yaxes[j];
9393

9494
if(i > j && showUpper) {
9595
layout._splomSubplots[id] = 1;

0 commit comments

Comments
 (0)