Skip to content

Commit

Permalink
hotfix: Checked items not getting exposed in treeselect component (#8890
Browse files Browse the repository at this point in the history
)

* fix : checked values not getting exposed correctly

* version bump
  • Loading branch information
stepinfwd committed Feb 22, 2024
1 parent 41bce67 commit f772f05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.30.1
2.30.2
2 changes: 1 addition & 1 deletion frontend/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.30.1
2.30.2
2 changes: 1 addition & 1 deletion frontend/src/Editor/Components/TreeSelect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const TreeSelect = ({
checkedPathStrings: checkedPathString,
checked: checked,
};
setExposedVariable(exposedVariables);
setExposedVariables(exposedVariables);

updatedNode.checked ? fireEvent('onCheck') : fireEvent('onUnCheck');
fireEvent('onChange');
Expand Down
2 changes: 1 addition & 1 deletion server/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.30.1
2.30.2

0 comments on commit f772f05

Please sign in to comment.