Fix missing titles in search results

This commit is contained in:
Alex Liebowitz 2016-03-27 01:23:37 -04:00
parent 841fc40568
commit 29f8018cef

View file

@ -190,7 +190,7 @@ var SearchResults = React.createClass({
console.log('made it here'); console.log('made it here');
this.props.results.forEach(function(result) { this.props.results.forEach(function(result) {
rows.push( 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} /> description={result.description} cost_est={result.cost_est} />
); );
}); });