More show links

This commit is contained in:
Jonas Whidden 2016-07-18 11:22:45 -05:00
parent 8890a0cb8c
commit 97f44b9072
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ var SearchResultRow = React.createClass({
<span style={searchRowCostStyle}>
<CreditAmount amount={this.props.cost_est} isEstimate={true}/>
</span>
<h2 style={searchRowTitleStyle}>{this.props.title}</h2>
<h2 style={searchRowTitleStyle}><a href={'/?show=' + this.props.name}>{this.props.title}</a></h2>
<div style={searchRowNameStyle}>lbry://{this.props.name}</div>
<p style={searchRowDescriptionStyle}>{this.props.description}</p>
<div>

View file

@ -97,7 +97,7 @@ var MyFilesRow = React.createClass({
<img src={this.props.imgUrl} alt={'Photo for ' + this.props.title} style={artStyle} />
</div>
<div className="span6">
<h2>{this.props.title}</h2>
<h2><a href={'/?show=' + this.props.lbryUri}>{this.props.title}</a></h2>
<div className={this.props.completed ? 'hidden' : ''} style={curProgressBarStyle}></div>
{ ' ' }
{this.props.completed ? 'Download complete' : (parseInt(this.props.ratioLoaded * 100) + '%')}