Andreas McDermott
Andreas McDermott
[W3's best practices](https://www.w3.org/TR/wai-aria-practices/#kbd_disabled_controls) lists a few specific cases where `disabled` should be avoided. >Removing focusability from disabled elements can offer users both advantages and disadvantages. Allowing keyboard users to skip...
To me, two key take-aways from WAI-Aria's section: * >Authors are encouraged to adopt a consistent set of conventions for the focusability of disabled elements. * >[...] make them focusable...
We have a case where the usage of a GQL query is based on a feature flag. The component renders like this (simplified): ``` if (enabled) return {children} else return...
Thanks. I'll try that as a workaround for now!