-
Notifications
You must be signed in to change notification settings - Fork 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
Search mouse clicks does not work on setting the state of open to true #1417
Comments
We want to help, however, there is not enough information provided here. Please use the codepen.io link provided in the issue template to demonstrate the issue. |
This is my code where mouse clicks don't work onFocus. export default class SearchInput extends Component {
} |
Please understand that we'd like to help, but we, unfortunately, do not always have the time to setup working examples for each issue reported. Here is the issue template that contains the information that we need to help. Specifically, I do not know what it is meant by "mouse clicks don't work on focus". This template is designed to get all the information we need to be able to assist. Please complete these fields, including forking the codepen.io template and updating it to demonstrate your issue: Steps
Expected ResultIt should be hot. Actual ResultIt is cold. Versionx.y.z TestcaseFork this to show the issue: http://codepen.io/levithomason/pen/ZpBaJX |
When I click on the Search bar, I would want the results to be displayed for which I am doing the following:
-onFocus={this.openmenu} where
-openmenu = () => {
this.setState({ open: true, results:this.props.source});
}
Here, MouseClicks are not working once the results show up.
The text was updated successfully, but these errors were encountered: