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 (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{isUpdate ? (asset && (
|
{isUpdate ? (asset && (
|
||||||
<React.Fragment>
|
<Row>
|
||||||
<Row>
|
<RowLabeled
|
||||||
<RowLabeled
|
label={
|
||||||
label={
|
<Label value={'Channel:'} />
|
||||||
<Label value={'Channel:'} />
|
}
|
||||||
}
|
content={
|
||||||
content={
|
<span className='text'>
|
||||||
<span className='text'>
|
{asset.claimData.channelName}
|
||||||
{asset.claimData.channelName}
|
</span>
|
||||||
</span>
|
}
|
||||||
}
|
/>
|
||||||
/>
|
</Row>
|
||||||
</Row>
|
|
||||||
<Row>
|
|
||||||
<RowLabeled
|
|
||||||
label={
|
|
||||||
<Label value={'Asset:'} />
|
|
||||||
}
|
|
||||||
content={
|
|
||||||
<span className='text'>
|
|
||||||
{asset.name}
|
|
||||||
</span>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</Row>
|
|
||||||
</React.Fragment>
|
|
||||||
)) : (
|
)) : (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Row>
|
<Row>
|
||||||
|
|
Loading…
Reference in a new issue