Fix image captions in search results
This commit is contained in:
parent
1d4a259135
commit
54a125673e
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ var SearchResultRow = React.createClass({
|
||||||
return (
|
return (
|
||||||
<div className="row-fluid">
|
<div className="row-fluid">
|
||||||
<div className="span3">
|
<div className="span3">
|
||||||
<img src={this.props.imgUrl} alt="Photo for {this.props.title}" style={searchRowImgStyle} />
|
<img src={this.props.imgUrl} alt={'Photo for ' + (this.props.title || this.props.name)} style={searchRowImgStyle} />
|
||||||
</div>
|
</div>
|
||||||
<div className="span9">
|
<div className="span9">
|
||||||
<span style={searchRowCostStyle}>
|
<span style={searchRowCostStyle}>
|
||||||
|
|
Loading…
Reference in a new issue