-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deleting the selected edge is not working #95
Comments
Hi! I would like to debug this thing, could you please create a stackblitz example for me? I see the |
No it's not triggering |
So the next guess would be that |
@chethan1095 it seem your issue might duplicate this one. Could you please confirm? |
Hi I have been trying to delete the connected edge between two nodes but using default backspace delete its not working.
Hers's the code for the same:-
` ```
deleteEdge(edge: Edge) { console.log(edge); this.edges = this.edges.filter(e => e.id !== edge.id) }
The text was updated successfully, but these errors were encountered: