Skip to content

Commit

Permalink
[type:fix] fix handler undefined problem (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireAchao authored Jan 14, 2025
1 parent 5aee5f9 commit deed8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/Plugin/Common/Rule.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class AddModal extends Component {
// customizationRule
const customHandle = this.handleComponentRef.getData(values);
handle = JSON.stringify({
...JSON.parse(handle),
...JSON.parse(handle ?? "{}"),
...JSON.parse(customHandle),
});
}
Expand Down

0 comments on commit deed8d3

Please sign in to comment.