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 5641b14 commit 4ae4d4cCopy full SHA for 4ae4d4c
services/static-webserver/client/source/class/osparc/data/model/Node.js
@@ -1440,6 +1440,10 @@ qx.Class.define("osparc.data.model.Node", {
1440
case "inputs": {
1441
const updatedPortKey = path.split("/")[4];
1442
const currentInputs = this.__getInputData();
1443
+ if (osparc.utils.Ports.isDataALink(currentInputs[updatedPortKey])) {
1444
+ // if the port is a link, we remove it from the props form
1445
+ this.getPropsForm().removePortLink(updatedPortKey);
1446
+ }
1447
currentInputs[updatedPortKey] = value;
1448
this.__setInputData(currentInputs);
1449
break;
0 commit comments