You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect that aria live messages show up both when adding items to a selection, and removing them. Interestingly, if I comment out lines 39 and 40 in the onStateChange function the message starts to show up
downshift
version: 6.0.5node
version: 10.20.1npm
(oryarn
) version: (unsure, can replicate in code sandbox)Relevant code or config
Can replicate in this code sandbox example https://codesandbox.io/s/github/kentcdodds/downshift-examples?file=/src/hooks/useMultipleSelection/select.js
What you did:
Use the example above to select multiple items.
What happened:
No aria-live messages showed up when adding items to the selection. Aria-live messages only showed up when removing items.
Reproduction repository:
https://codesandbox.io/s/github/kentcdodds/downshift-examples?file=/src/hooks/useMultipleSelection/select.js
Problem description:
I would expect that aria live messages show up both when adding items to a selection, and removing them. Interestingly, if I comment out lines 39 and 40 in the
onStateChange
function the message starts to show upSo something about calling those two mutative functions messes up the code that detects that an aria update is required.
Suggested solution:
Unsure, I dug around in those functions but couldn't identify anything obvious
The text was updated successfully, but these errors were encountered: