remove asset label/row on edit page
This commit is contained in:
parent
7ed43c645b
commit
5747245e64
1 changed files with 12 additions and 26 deletions
|
@ -46,32 +46,18 @@ class PublishDetails extends React.Component {
|
|||
return (
|
||||
<div>
|
||||
{isUpdate ? (asset && (
|
||||
<React.Fragment>
|
||||
<Row>
|
||||
<RowLabeled
|
||||
label={
|
||||
<Label value={'Channel:'} />
|
||||
}
|
||||
content={
|
||||
<span className='text'>
|
||||
{asset.claimData.channelName}
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
<RowLabeled
|
||||
label={
|
||||
<Label value={'Asset:'} />
|
||||
}
|
||||
content={
|
||||
<span className='text'>
|
||||
{asset.name}
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
</Row>
|
||||
</React.Fragment>
|
||||
<Row>
|
||||
<RowLabeled
|
||||
label={
|
||||
<Label value={'Channel:'} />
|
||||
}
|
||||
content={
|
||||
<span className='text'>
|
||||
{asset.claimData.channelName}
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
</Row>
|
||||
)) : (
|
||||
<React.Fragment>
|
||||
<Row>
|
||||
|
|
Loading…
Reference in a new issue