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 1117144 commit 264e5d6Copy full SHA for 264e5d6
services/static-webserver/client/source/class/osparc/data/model/NodeStatus.js
@@ -221,7 +221,7 @@ qx.Class.define("osparc.data.model.NodeStatus", {
221
if ("modified" in state) {
222
if (this.getHasOutputs()) {
223
// File Picker can't have a modified output
224
- this.setModified((state.modified || this.hasDependencies()) && !this.getNode().isFilePicker());
+ this.setModified((state["modified"] || this.hasDependencies()) && !this.getNode().isFilePicker());
225
} else {
226
this.setModified(null);
227
}
0 commit comments