Claim added
This commit is contained in:
parent
bb19e4bb3a
commit
35d0da670c
2 changed files with 22 additions and 12 deletions
|
@ -150,7 +150,6 @@
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
border-bottom: 1px solid $grey-alt;
|
border-bottom: 1px solid $grey-alt;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -163,4 +162,13 @@
|
||||||
padding-top: 22px;
|
padding-top: 22px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.claim-address {
|
||||||
|
.link--brand {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -11,7 +11,7 @@ import * as Icon from 'react-feather';
|
||||||
|
|
||||||
class AssetInfo extends React.Component {
|
class AssetInfo extends React.Component {
|
||||||
render () {
|
render () {
|
||||||
const { asset: { shortId, claimData: { channelName, certificateId, description, name, claimId, fileExt, contentType, thumbnail, host } } } = this.props;
|
const { asset: { shortId, claimData: { channelName, certificateId, description, name, address, claimId, fileExt, contentType, thumbnail, host } } } = this.props;
|
||||||
return (
|
return (
|
||||||
<div className='asset-information-wrap'>
|
<div className='asset-information-wrap'>
|
||||||
<HorizontalSplit
|
<HorizontalSplit
|
||||||
|
@ -135,16 +135,18 @@ class AssetInfo extends React.Component {
|
||||||
Hosted via the <a className={'link--brand link--hover'} href={'https://lbry.io/get'} target={'_blank'}>LBRY</a> blockchain
|
Hosted via the <a className={'link--brand link--hover'} href={'https://lbry.io/get'} target={'_blank'}>LBRY</a> blockchain
|
||||||
</p>
|
</p>
|
||||||
</Row>
|
</Row>
|
||||||
|
{address && (
|
||||||
<div className='claim-address'>
|
<div className='claim-address'>
|
||||||
<RowLabeledAlt
|
<RowLabeledAlt
|
||||||
label={
|
label={
|
||||||
<Label value={'Claim Address'} />
|
<Label value={'Claim Address'} />
|
||||||
}
|
}
|
||||||
content={
|
content={
|
||||||
<a className={'link--brand link--hover'} href={'https://lbry.io/get'} target={'_blank'}>Place Claim Address Here</a>
|
<a className={'link--brand link--hover'} href={'https://lbry.io/get'} target={'_blank'}>{address}</a>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue