From 9e97501b5c29f76a22ab7f493ebfcf06c07ec596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Mon, 25 May 2026 07:42:23 +0200 Subject: [PATCH] Preserve activatable pulldown selection across toggle --- components/interactive-elements.html | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/interactive-elements.html b/components/interactive-elements.html index 95cf71d..e923dcf 100644 --- a/components/interactive-elements.html +++ b/components/interactive-elements.html @@ -704,11 +704,6 @@ if (isActive && !hasSelectedOption) { options[0].setAttribute('aria-checked', 'true'); } - if (!isActive) { - options.forEach((option) => { - option.setAttribute('aria-checked', 'false'); - }); - } options.forEach((option) => { option.classList.toggle('sg-checkbox-field--inactive-selectable', !isActive);