You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If property nodes have no incoming or outgoing edges in the data flow graph, they should be removed from the graph when a reactive function that references them (as inputs or outputs) is destroy()ed.
To check:
inputs with no outgoing edges
inputs with no incoming edges
output with no outgoing edges
output with no incoming edges
When serializing the graph at the last unit test, this is what it looks like now:
{
"nodes": [
{ "id": "1" },
{"id": "2"},
{"id": "3" },
... all the way up to
{"id": "58" }
],
"links": [
{ "source": "57", "target": 56 },
{ "source": "58", "target": 56 }
]
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
If property nodes have no incoming or outgoing edges in the data flow graph, they should be removed from the graph when a reactive function that references them (as inputs or outputs) is
destroy()
ed.To check:
When serializing the graph at the last unit test, this is what it looks like now:
The text was updated successfully, but these errors were encountered: