Skip to content

Commit

Permalink
fix: correct binding
Browse files Browse the repository at this point in the history
  • Loading branch information
saintsebastian committed Dec 13, 2021
1 parent 6453996 commit 56a5675
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@ export default mixins(
if (e.key === 'd') {
this.callDebounced('deactivateSelectedNode', 350);
} else if (e.key === 'Delete') {
} else if (e.key === 'Delete' || e.key === 'Backspace') {
e.stopPropagation();
e.preventDefault();
Expand Down

0 comments on commit 56a5675

Please sign in to comment.