remove output node in js

1123
ZhangGe6 4 years ago
parent 02837fd309
commit 4e69fa0d48

@ -1014,6 +1014,12 @@ view.Graph = class extends grapher.Graph {
}
for (const output of graph.outputs) {
// My code
if (this._modelNodeName2State.get(output.name) == 'Deleted') {
// console.log(this._modelNodeName2State.get(node.name))
continue;
}
const viewOutput = this.createOutput(output);
for (const argument of output.arguments) {
this.createArgument(argument).to(viewOutput);

Loading…
Cancel
Save