Fix missing titles in search results
This commit is contained in:
parent
841fc40568
commit
29f8018cef
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ var SearchResults = React.createClass({
|
|||
console.log('made it here');
|
||||
this.props.results.forEach(function(result) {
|
||||
rows.push(
|
||||
<SearchResultRow name={result.name} title={result.title} imgUrl={result.thumbnail}
|
||||
<SearchResultRow name={result.name} title={result.stream_name} imgUrl={result.thumbnail}
|
||||
description={result.description} cost_est={result.cost_est} />
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue