1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2026-01-03 21:42:32 +03:00

Fix keyboard dnd messing with roving tabindex

This commit is contained in:
Michael Telatynski
2021-09-03 15:10:51 +01:00
parent 40f9302ec9
commit 6a40dfea40

View File

@@ -223,6 +223,8 @@ const SpacePanel = () => {
}, []);
const onKeyDown = (ev: React.KeyboardEvent) => {
if (ev.defaultPrevented) return;
let handled = true;
switch (ev.key) {