We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://jsfiddle.net/asefkow/2hxtguac/
The "next" button is rendered with
<div class="swiper-button-next" tabindex="-1" role="button" aria-label="Next slide" aria-controls="swiper-wrapper-28cfe37a4e751be2" aria-disabled="true"></div>
which is incorrect. The aria-disabled="true" suggests a disabled button, when in fact the button is actually enabled.
aria-disabled="true"
Either aria-disabled="false" or no attribute at all.
aria-disabled="false"
7.4.1
macIS
The text was updated successfully, but these errors were encountered:
8183466
No branches or pull requests
Check that this is really a bug
Reproduction link
https://jsfiddle.net/asefkow/2hxtguac/
Bug description
The "next" button is rendered with
<div class="swiper-button-next" tabindex="-1" role="button" aria-label="Next slide" aria-controls="swiper-wrapper-28cfe37a4e751be2" aria-disabled="true"></div>
which is incorrect. The
aria-disabled="true"
suggests a disabled button, when in fact the button is actually enabled.Expected Behavior
Either
aria-disabled="false"
or no attribute at all.Actual Behavior
aria-disabled="true"
Swiper version
7.4.1
Platform/Target and Browser Versions
macIS
Validations
Would you like to open a PR for this bug?
The text was updated successfully, but these errors were encountered: