-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
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
Incomplete accessible name on "Prev" button in Prompts Panel #5310
Labels
a11y
Accessibility
Comments
berry-13
added a commit
that referenced
this issue
Jan 20, 2025
Fixes #5310 Add `aria-label="previous"` attribute to the 'Prev' button in the Prompts Panel. * Modify `client/src/components/Chat/Prompts.tsx` to include `aria-label="previous"` attribute for the button.
10 tasks
owengo
pushed a commit
to openwengo/LibreChat
that referenced
this issue
Jan 21, 2025
Fixes danny-avila#5310 Add `aria-label="previous"` attribute to the 'Prev' button in the Prompts Panel. * Modify `client/src/components/Chat/Prompts.tsx` to include `aria-label="previous"` attribute for the button.
lpirola
pushed a commit
to lpirola/LibreChat
that referenced
this issue
Jan 22, 2025
Fixes danny-avila#5310 Add `aria-label="previous"` attribute to the 'Prev' button in the Prompts Panel. * Modify `client/src/components/Chat/Prompts.tsx` to include `aria-label="previous"` attribute for the button.
justinmdickey
pushed a commit
to e-gineering/LibreChat
that referenced
this issue
Jan 30, 2025
Fixes danny-avila#5310 Add `aria-label="previous"` attribute to the 'Prev' button in the Prompts Panel. * Modify `client/src/components/Chat/Prompts.tsx` to include `aria-label="previous"` attribute for the button.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue Description
Screen readers will read the word "prev", instead of the full word "previous". This creates confusion for users relying on assistive technologies.
WCAG Criteria
1.1.1 Non-text Content (Level A)
Screenshot or Screen Recording
No screenshot provided.
Snippet:
Suggested Action:
Change the text to the full word "Previous".
Alternatively, provide an accessible name for screen readers using aria-label="previous" or visually hidden element (e.g., add the class .sr-only) and wrap "Prev" in a with aria-hidden="true".
The text was updated successfully, but these errors were encountered: