mstefaniuk / graph-viz-d3-js

Graphviz web D3.js renderer
MIT License
313 stars 38 forks source link

Deletes of duplicate edges aren't handled properly #52

Closed ekmett closed 7 years ago

ekmett commented 7 years ago

Take a simple graph with a redundant edge, such as

digraph {
    x -> y;
    x -> y;
}

and delete the second x -> y edge. It'll leave a "zombie" edge in the UI that you can't get rid of.

mstefaniuk commented 7 years ago

Let me look into it.

mstefaniuk commented 7 years ago

Seems to be fixed in the latest release (0.9.50). Online fiddling website is also upgraded (http://graphviz.it).