mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
✨ Add support for backspace (#2551)
This commit is contained in:
@@ -574,7 +574,8 @@ export default mixins(
|
|||||||
|
|
||||||
if (e.key === 'd') {
|
if (e.key === 'd') {
|
||||||
this.callDebounced('deactivateSelectedNode', 350);
|
this.callDebounced('deactivateSelectedNode', 350);
|
||||||
} else if (e.key === 'Delete') {
|
|
||||||
|
} else if (e.key === 'Delete' || e.key === 'Backspace') {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user