diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-16 22:01:24 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-16 22:01:24 -0400 |
| commit | 4b1db5899cb04f0892406be32a10bae49d6ba351 (patch) | |
| tree | 120f994cfe09c01f8f8d7761e094cf95337498e7 /src/client/views/SearchBox.tsx | |
| parent | 5bb670a3a93f53c65ae225cc8572f99e9f4c4b33 (diff) | |
Fixed errors
Diffstat (limited to 'src/client/views/SearchBox.tsx')
| -rw-r--r-- | src/client/views/SearchBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/SearchBox.tsx b/src/client/views/SearchBox.tsx index 8fb43021a..1b9be841f 100644 --- a/src/client/views/SearchBox.tsx +++ b/src/client/views/SearchBox.tsx @@ -163,7 +163,7 @@ export class SearchBox extends React.Component { </div> {this._resultsOpen ? ( <div className="searchBox-results"> - {this._results.map(result => <SearchItem doc={result} key={result[Id]} />)} + {this._results.map(result => <SearchItem doc={result} key={result[Id]} highlighting={[]} />)} </div> ) : null} </div> |
