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
Currently, when an id is passed into a non-group type input component (like Checkbox), that ends up being applied to the LabelComponent along with the input itself.
When an id is passed into a group type input component (like RadioGroup), that ends up being applied to LabelComponent that wraps the whole group, as well as each LabelComponent for each radio input component.
Proposal
Don't apply the id to the LabelComponent, keep it only on the input itself for non-group type input components
Ignore the id entirely for group type input components (as the id value for these inputs needs to be set programmatically)
I didn't audit every input component so there may be differences not surfaced here
The text was updated successfully, but these errors were encountered:
Issue
artlook-client
id
is passed into a non-group type input component (like Checkbox), that ends up being applied to theLabelComponent
along with the input itself.id
is passed into a group type input component (like RadioGroup), that ends up being applied toLabelComponent
that wraps the whole group, as well as eachLabelComponent
for each radio input component.Proposal
id
to theLabelComponent
, keep it only on the input itself for non-group type input componentsid
entirely for group type input components (as theid
value for these inputs needs to be set programmatically)The text was updated successfully, but these errors were encountered: