Skip to content

Commit

Permalink
Fix for TypeError: cyclic object value
Browse files Browse the repository at this point in the history
Probably also the fix for not running MF's. Maybe Mendix 7 is more strict in origin checking.
  • Loading branch information
ChrisdeG authored May 29, 2019
1 parent 1528489 commit 3106f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LabelSelect/widget/LabelSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ define([
params: {
applyto: "selection",
actionname: mf,
guids: [obj.getGuid()],
origin: this.mxform
guids: [obj.getGuid()]
},
origin: this.mxform,
callback: function() {
if (cb && typeof cb === "function") {
cb();
Expand Down

0 comments on commit 3106f87

Please sign in to comment.