Skip to content

Commit

Permalink
Try a naive fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Aug 23, 2023
1 parent 9932304 commit 5e1dff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-base/src/useAutocomplete/useAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ export function useAutocomplete(props) {
};

const handleInputMouseDown = (event) => {
if (inputValue === '' || !open) {
if (!disabledProp && (inputValue === '' || !open)) {
handlePopupIndicator(event);
}
};
Expand Down

0 comments on commit 5e1dff6

Please sign in to comment.