Daily Accessibility ReviewImages Missing Alt Text (Non-text Content) #17811
Unanswered
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
Several
<img>elements in the application are missingaltattributes, making their content inaccessible to users who rely on screen readers.Files and locations:
1.
shell/components/Carousel.vue– line 198The carousel slide icon has no
altattribute. When a slide represents a Helm chart, the icon is the chart's identifying visual — screen reader users cannot determine which chart is being shown.2.
shell/components/formatter/ReceiverIcons.vue– line 98Alert receiver type logos have no
altattribute, so screen reader users cannot identify the receiver type from the icon.3.
shell/pages/c/_cluster/istio/index.vue– lines 101 and 137Kiali and Jaeger product logos on the Istio tools page have no
altattribute.WCAG 2.2 Reference
WCAG 2.2 § 1.1.1 – Non-text Content (Level A)
Every meaningful image must have a text alternative. Decorative images should use
alt=""to instruct assistive technologies to ignore them. Images that convey information (such as product logos identifying a tool) must have descriptive alt text.Suggested Fixes
Beta Was this translation helpful? Give feedback.
All reactions