ToolJet/frontend/src/Editor/QueryManager/QueryEditors/utils.js

14 lines
242 B
JavaScript
Raw Normal View History

export function changeOption(_ref, option, value) {
_ref.setState(
{
options: {
..._ref.state.options,
[option]: value,
},
},
() => {
_ref.props.optionsChanged(_ref.state.options);
}
);
}