From 0e32f666eb30cc254177119907e6eae3c09ce0ca Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 4 Aug 2025 18:17:24 +0300 Subject: [PATCH] Comment out not used Tab code at accessibility related changes. Thanks to xet7 ! Related https://github.com/wekan/wekan/pull/5853 --- client/components/lists/listBody.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js index 59dd4ab22..9ab4fcdc7 100644 --- a/client/components/lists/listBody.js +++ b/client/components/lists/listBody.js @@ -414,6 +414,7 @@ BlazeComponent.extendComponent({ // or `Enter` to validation the auto-completion. We also need to stop the // event propagation to prevent the card from submitting (on `Enter`) or // going on the next column (on `Tab`). + /* onKeydown(evt, commands) { // Prevent custom focus movement on Tab key for accessibility // if (evt.keyCode === 9 || evt.keyCode === 13) { @@ -422,6 +423,7 @@ BlazeComponent.extendComponent({ //} return null; }, + */ }, ); },