We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8bcf1 commit 6cde790Copy full SHA for 6cde790
src/components/fields/TraceSelector.js
@@ -61,7 +61,7 @@ class TraceSelector extends Component {
61
this.traceOptions = [{label: 'Scatter', value: 'scatter'}];
62
}
63
64
- this.fullValue = plotlyToCustom(props.container);
+ this.fullValue = plotlyToCustom(props.fullContainer);
65
66
67
componentWillReceiveProps(nextProps, nextContext) {
@@ -94,6 +94,7 @@ TraceSelector.contextTypes = {
94
TraceSelector.propTypes = {
95
getValObject: PropTypes.func,
96
container: PropTypes.object.isRequired,
97
+ fullContainer: PropTypes.object.isRequired,
98
fullValue: PropTypes.any.isRequired,
99
updateContainer: PropTypes.func,
100
};
0 commit comments