You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting what I perceive to be a false positive for jsx-a11y/no-noninteractive-element-interactions . This is in fact an interactive element that can be toggled open and closed natively. I'm adding listeners to the element in order to provide fallback support for IE/Edge that do not support it.
The text was updated successfully, but these errors were encountered:
anthony-dandrea
changed the title
details element giving false position for no-noninteractive-element-interactions
details element giving false positive for no-noninteractive-element-interactions
Apr 8, 2019
@sh0ji is correct, this is not a false positive. The details element maps to a group role, which is non-interactive. The summary element should be considered interactive, though. We'll fix this in #656
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
I'm getting what I perceive to be a false positive for
jsx-a11y/no-noninteractive-element-interactions
. This is in fact an interactive element that can be toggled open and closed natively. I'm adding listeners to the element in order to provide fallback support for IE/Edge that do not support it.The text was updated successfully, but these errors were encountered: