From 3106f870737cf2d2c23e8514efe983c1e71c4caa Mon Sep 17 00:00:00 2001 From: ChrisdeG Date: Wed, 29 May 2019 14:37:29 +0200 Subject: [PATCH] Fix for TypeError: cyclic object value Probably also the fix for not running MF's. Maybe Mendix 7 is more strict in origin checking. --- src/LabelSelect/widget/LabelSelect.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LabelSelect/widget/LabelSelect.js b/src/LabelSelect/widget/LabelSelect.js index 2d49de9..933fd0e 100644 --- a/src/LabelSelect/widget/LabelSelect.js +++ b/src/LabelSelect/widget/LabelSelect.js @@ -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();