We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d8791 commit 0d7703eCopy full SHA for 0d7703e
services/static-webserver/client/source/class/osparc/data/model/Node.js
@@ -415,9 +415,12 @@ qx.Class.define("osparc.data.model.Node", {
415
416
__getInputUnits: function() {
417
if (this.isPropertyInitialized("propsForm") && this.getPropsForm()) {
418
- return this.getPropsForm().getChangedXUnits();
+ const changedUnits = this.getPropsForm().getChangedXUnits();
419
+ if (Object.keys(changedUnits).length) {
420
+ return changedUnits;
421
+ }
422
}
- return {};
423
+ return null;
424
},
425
426
getInput: function(inputId) {
0 commit comments