Closed saloni268 closed 4 years ago
@smhigley FYI
Any updates on this?
Hi @paulgildea @smhigley, any update on this bug?
@Github307 I was having the same issues and got it sorted updating to the latest version.
Thanks for the update @levymsft.
I'll closed this as fixed in the latest issue as no repo. Thanks!
Environment Information
Describe the issue:
Multi-select Dropdown component is giving the following accessibility issues:
This is coming for the complete dropdown callout section. In the how to fix section, it is mentioned,
This is coming for each option in the dropdown. In the how to fix section, it is mentioned,
ARIA attributes are not allowed: aria-posinset="1", aria-setsize="20"
ARIA attributes are not allowed: aria-posinset="2", aria-setsize="20"
ARIA attributes are not allowed: aria-posinset="3", aria-setsize="20"
This is our code snippet from where multi-select Dropdown is created,
<Dropdown label='Label' id="multiselect-filter-dropdown" placeholder='Select a value' selectedKeys={this.getSelectedKeysMethod} multiSelect options={this.getOptionsMethod} styles={styles} responsiveMode={ResponsiveMode.large} onChange={this.onChangeMethod} onRenderTitle={this.onRenderTitleMethod} />
Actual behavior:
We have not assigned any ARIA attributes to the components, still it showing accessibility issues. We are not sure how to fix this or provide/remove ARIA attributes explicitly from within the component.
Expected behavior:
No accessibility issues should come up.