mirror of https://github.com/vector-im/riot-web
Fix keyboard dnd messing with roving tabindex
parent
40f9302ec9
commit
6a40dfea40
|
@ -223,6 +223,8 @@ const SpacePanel = () => {
|
|||
}, []);
|
||||
|
||||
const onKeyDown = (ev: React.KeyboardEvent) => {
|
||||
if (ev.defaultPrevented) return;
|
||||
|
||||
let handled = true;
|
||||
|
||||
switch (ev.key) {
|
||||
|
|
Loading…
Reference in New Issue