-
Notifications
You must be signed in to change notification settings - Fork 27
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
Remove ChooseMaterialTypeComponent render modifiers #8266
Remove ChooseMaterialTypeComponent render modifiers #8266
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the extra cleanup this forced. Nice.
menuElement.querySelector('button:first-of-type').focus(); | ||
focusFirstLink = task(async () => { | ||
await timeout(1); | ||
document.querySelector('.choose-material-type .menu button:first-of-type').focus(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
query should not be relative to the document root., but relative to the menu that the user is interacting with.
please see #8264 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch, I didn't see this at all!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Refs ilios/ilios#5374