Skip to content

Commit 546fffd

Browse files
committed
fixes individual axes controls display for 3d, ternary, geo
1 parent 3265b48 commit 546fffd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/connectAxesToLayout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ export default function connectAxesToLayout(WrappedComponent) {
8181
);
8282
this.fullContainer = multiValuedContainer;
8383
this.defaultContainer = this.axes[0];
84-
// what should this be set to? Probably doesn't matter.
8584
this.container = {};
8685
} else {
8786
this.fullContainer = nestedProperty(fullContainer, axesTarget).get();
88-
this.container = nestedProperty(container, axesTarget).get();
87+
this.defaultContainer = this.fullContainer;
88+
this.container = {};
8989
}
9090
}
9191

0 commit comments

Comments
 (0)