From f99cf911e85e37684624c316094f4b6d2635728d Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sat, 23 Mar 2024 14:35:59 +0100 Subject: [PATCH] Revert "Remove inputs in dropdowns from taborder" This reverts commit 7dc453bb398a63597bfa5f65b7a4c2ea45fc9e09. --- web_src/js/modules/fomantic/dropdown.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web_src/js/modules/fomantic/dropdown.js b/web_src/js/modules/fomantic/dropdown.js index d2d3e86843..ecf264d57b 100644 --- a/web_src/js/modules/fomantic/dropdown.js +++ b/web_src/js/modules/fomantic/dropdown.js @@ -39,7 +39,6 @@ function updateMenuItem(dropdown, item) { item.setAttribute('role', dropdown[ariaPatchKey].listItemRole); item.setAttribute('tabindex', '-1'); for (const a of item.querySelectorAll('a')) a.setAttribute('tabindex', '-1'); - for (const input of item.querySelectorAll('input')) input.setAttribute('tabindex', '-1'); } // make the label item and its "delete icon" has correct aria attributes