(edgeid)
| 130 | } |
| 131 | |
| 132 | const deleteEdge = (edgeid) => { |
| 133 | deleteConnectedInput(edgeid, 'edge') |
| 134 | reactFlowInstance.setEdges(reactFlowInstance.getEdges().filter((edge) => edge.id !== edgeid)) |
| 135 | dispatch({ type: SET_DIRTY }) |
| 136 | } |
| 137 | |
| 138 | const deleteConnectedInput = (id, type) => { |
| 139 | const connectedEdges = |
no test coverage detected