Skip to content
Snippets Groups Projects
Unverified Commit 76514a2e authored by Noah Moss's avatar Noah Moss Committed by GitHub
Browse files

Fix options menu in visualization settings sidebar (#17629)

parent ccdbb8e9
No related branches found
No related tags found
No related merge requests found
......@@ -64,10 +64,12 @@ const chartSettingNestedSettings = ({
constructor(props: Props) {
super(props);
this.state = {};
}
getEditingObjectKey = () => {
return (
this.state.objectKeyOverride ||
this.props.initialKey ||
(this.props.objects.length === 1
? getObjectKey(this.props.objects[0])
......@@ -76,6 +78,11 @@ const chartSettingNestedSettings = ({
};
handleChangeEditingObject = (editingObject: ?NestedObject) => {
// objectKeyOverride allows child components to set the editing object key to a different value than is derived
// from the props. For example, this is used by the "More options" button in ChartNestedSettingSeries.
this.setState({
objectKeyOverride: editingObject ? getObjectKey(editingObject) : null,
});
// special prop to notify ChartSettings it should unswap replaced widget
if (!editingObject && this.props.onEndShowWidget) {
this.props.onEndShowWidget();
......
......@@ -16,7 +16,7 @@ const questionDetails = {
display: "line",
};
describe.skip("issue 17619", () => {
describe("issue 17619", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment