fix: prevent nodes from being unintentionally deleted by pressing the backspace key. (#21023)

This commit is contained in:
kurokobo
2025-06-17 17:11:30 +09:00
committed by GitHub
parent 19339c3de1
commit df6451076b
3 changed files with 5 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ export const useShortcuts = (): void => {
return !showFeaturesPanel && !isEventTargetInputArea(e.target as HTMLElement)
}, [workflowStore])
useKeyPress(['delete', 'backspace'], (e) => {
useKeyPress(['delete'], (e) => {
if (shouldHandleShortcut(e)) {
e.preventDefault()
handleNodesDelete()