mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 16:37:42 +00:00
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
|
|
|
||
|
|
export function changeOption(_ref, option, value) {
|
||
|
|
_ref.setState(
|
||
|
|
{
|
||
|
|
options: {
|
||
|
|
..._ref.props.options,
|
||
|
|
[option]: value
|
||
|
|
}
|
||
|
|
},
|
||
|
|
() => {
|
||
|
|
_ref.props.optionsChanged(_ref.state.options);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
};
|