diff options
author | Noah Loomans <noahloomans@gmail.com> | 2017-12-10 15:58:25 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2017-12-10 15:58:25 +0100 |
commit | 797fb96cd0001d6c739c89507befc73d3d8a6614 (patch) | |
tree | b5471fb96399526d056b5a57553313a92f22ed12 /src/client/react/components/container | |
parent | 36dc0fb88258af24069f61935656334c35ef13b3 (diff) |
Show user icon instead of search icon on exact match
Diffstat (limited to 'src/client/react/components/container')
-rw-r--r-- | src/client/react/components/container/Search.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/react/components/container/Search.js b/src/client/react/components/container/Search.js index 206a6a1..70b3685 100644 --- a/src/client/react/components/container/Search.js +++ b/src/client/react/components/container/Search.js @@ -6,6 +6,7 @@ const mapStateToProps = state => ({ results: state.search.searchResults, value: state.search.searchInput, hasFocus: state.search.hasFocus, + exactMatch: state.search.exactMatch, }); const mapDispatchToProps = dispatch => ({ |