docs(props): delete key -> backspace closes #557

This commit is contained in:
moklick
2020-10-06 17:06:12 +02:00
parent 78b0a24a86
commit 70ed6b0c96
2 changed files with 2 additions and 2 deletions
@@ -69,5 +69,5 @@ import ReactFlow from 'react-flow-renderer';
- `connectionLineComponent`: [custom connection line component](/example/src/CustomConnectionLine/index.js)
### Keys
- `deleteKeyCode`: default: `8` (delete)
- `deleteKeyCode`: default: `8` (backspace)
- `selectionKeyCode`: default: `16` (shift)
@@ -95,7 +95,7 @@ export default () => {
}
```
In this example you can connect nodes and remove selected nodes and edges with the delete key.
In this example you can connect nodes and remove selected nodes and edges with the backspace key.
import Basic from './BasicFunctions';