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
Currently, the BasicTable component renders a caption with the text "Below is a table of X items."
BasicTable
caption
eui/src/components/basic_table/basic_table.js
Line 470 in f33c710
This isn't ideal if a page has multiple tables. It would be great if this text could be configurable or if the default could provide more context.
Suggested text from @barlowm:
"Below is the <table_name> table containing <number_of_visible_items> rows out of <number_of_total_items_if_multiple_pages>."
Related issue: elastic/kibana#43842
The text was updated successfully, but these errors were encountered:
Also, captions have role caption added to them which is not allowed and not officially supported.
role
(Search for "caption" on this W3C page to verify. Can also see the violation when running axe.)
Sorry, something went wrong.
This is necessary to address the following Kibana accessibility issues:
andreadelrio
Successfully merging a pull request may close this issue.
Currently, the
BasicTable
component renders acaption
with the text "Below is a table of X items."eui/src/components/basic_table/basic_table.js
Line 470 in f33c710
This isn't ideal if a page has multiple tables. It would be great if this text could be configurable or if the default could provide more context.
Suggested text from @barlowm:
"Below is the <table_name> table containing <number_of_visible_items> rows out of <number_of_total_items_if_multiple_pages>."
Related issue: elastic/kibana#43842
The text was updated successfully, but these errors were encountered: