fix: unable to use cmd/ctrl-delete/backspace in inputs (#5348)
This commit is contained in:
parent
39d17c4a3c
commit
50bc7e099a
@ -1731,11 +1731,13 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// bail if
|
||||||
if (
|
if (
|
||||||
|
// inside an input
|
||||||
(isWritableElement(event.target) &&
|
(isWritableElement(event.target) &&
|
||||||
!event[KEYS.CTRL_OR_CMD] &&
|
// unless pressing escape (finalize action)
|
||||||
event.key !== KEYS.ESCAPE) ||
|
event.key !== KEYS.ESCAPE) ||
|
||||||
// case: using arrows to move between buttons
|
// or unless using arrows (to move between buttons)
|
||||||
(isArrowKey(event.key) && isInputLike(event.target))
|
(isArrowKey(event.key) && isInputLike(event.target))
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user