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
This rule doesn't support dynamic components that can't be statically analysed as providing a label, but would result in an accessible label at run time.
Specifically in my instance, the react-intl component <FormattedMessage /> takes the prop id and then results in the HTML structure
<span>Locale-aware content</span>
However, the control-has-associated-label has no way to be extended and accept an array of components that can be safely considered as providing a label.
The config only allows for adding components that should be parsed by this rule, and allows for removing components that should be excluded, but doesn't allow for extending to match a given component that would then result in a pass.
The text was updated successfully, but these errors were encountered:
This rule doesn't support dynamic components that can't be statically analysed as providing a label, but would result in an accessible label at run time.
Specifically in my instance, the react-intl component
<FormattedMessage />
takes the propid
and then results in the HTML structureHowever, the
control-has-associated-label
has no way to be extended and accept an array of components that can be safely considered as providing a label.The config only allows for adding components that should be parsed by this rule, and allows for removing components that should be excluded, but doesn't allow for extending to match a given component that would then result in a pass.
The text was updated successfully, but these errors were encountered: