grafana / grafana-aws-sdk-react

Apache License 2.0
3 stars 1 forks source link

Associate label with input element #85

Closed kevinwcyu closed 5 months ago

kevinwcyu commented 5 months ago

Use htmlFor to associate labels with input elements.

<Select> components use the inputId instead of id to be associated with the label's htmlFor, whereas<Input> components use the id as expected.

Removed the aria-label from elements because the associated label should be used instead.