-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat(SearchBar): fetch and open note once clicked on a suggestion #774
Conversation
a626f20
to
dea25be
Compare
src/components/Bar.jsx
Outdated
{barSearch || (searchBarEnabled ? <SearchBar /> : null)} | ||
{barSearch || | ||
(searchBarEnabled ? ( | ||
<SearchBar client={this.props.cozyClient} /> |
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.
What is the gain to pass client as props? Why not using withClient
as the rest of our codebase?
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.
fixed
19fd238
to
26c634a
Compare
26c634a
to
47ef4fc
Compare
🎉 This PR is included in version 8.9.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
See PR description of #773