Skip to content

Commit

Permalink
check for valid data before resetting (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat authored May 17, 2023
1 parent 04966ab commit 1741058
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,11 @@ Formbuilder.extjs.formPanel.outputWorkflow.channel.object = Class.create(Formbui
},

resetDynamicObjectResolverData: function () {

if (this.data === null) {
return;
}

this.data.dynamicObjectResolver = null;
this.data.dynamicObjectResolverClass = null;
},
Expand Down

0 comments on commit 1741058

Please sign in to comment.