(e)
| 90 | state.moveDrag(e); |
| 91 | }, |
| 92 | onDragEnd(e) { |
| 93 | let {dropOperation} = e; |
| 94 | let isInternal = dropOperation === 'cancel' ? false : isInternalDropOperation(); |
| 95 | state.endDrag({...e, keys: state.draggingKeys, isInternal}); |
| 96 | clearGlobalDnDState(); |
| 97 | } |
| 98 | }); |
| 99 | |
| 100 | let item = state.collection.getItem(props.key); |
nothing calls this directly
no test coverage detected