-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
[Autocomplete] Display loading feedback with freeSolo #20869
Conversation
Details of bundle changes.Comparing: a9f831a...553f533 Details of page changes
|
@@ -263,7 +264,7 @@ export default function useAutocomplete(props) { | |||
) | |||
: []; | |||
|
|||
popupOpen = freeSolo && filteredOptions.length === 0 ? false : popupOpen; | |||
popupOpen = freeSolo && filteredOptions.length === 0 && !loading ? false : popupOpen; |
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 don't think that my proposed solution was the best possible. Especially, I don't think that we should leak the loading
concerns down to the useAutocomplete
hook. I have an alternative proposal.
I'm not 100% confident that announcing the popup open with nothing inside won't create any issue, but it seems something worth figuring out. |
Closes #20824