Skip to content

Commit 36dae8f

Browse files
committed
fixes individual axes controls display for 3d, ternary, geo
1 parent af34ccc commit 36dae8f

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.container = this.container =
88+
nestedProperty(container, axesTarget).get() || {};
8989
}
9090
}
9191

0 commit comments

Comments
 (0)