mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Fix keyboard dnd messing with roving tabindex
This commit is contained in:
parent
40f9302ec9
commit
6a40dfea40
1 changed files with 2 additions and 0 deletions
|
@ -223,6 +223,8 @@ const SpacePanel = () => {
|
|||
}, []);
|
||||
|
||||
const onKeyDown = (ev: React.KeyboardEvent) => {
|
||||
if (ev.defaultPrevented) return;
|
||||
|
||||
let handled = true;
|
||||
|
||||
switch (ev.key) {
|
||||
|
|
Loading…
Reference in a new issue