More show links
This commit is contained in:
parent
8890a0cb8c
commit
97f44b9072
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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) + '%')}
|
||||
|
|
Loading…
Reference in a new issue