Remove “No description added” media warning in edit mode (#20393)
Editing media metadata is not currently possible in edit mode, the button would open the modal but saving the changes would error out.gh/stable
parent
9bc0a6c861
commit
5e796dc6f8
|
@ -47,7 +47,7 @@ export default class Upload extends ImmutablePureComponent {
|
|||
{!isEditingStatus && (<button type='button' className='icon-button' onClick={this.handleFocalPointClick}><Icon id='pencil' /> <FormattedMessage id='upload_form.edit' defaultMessage='Edit' /></button>)}
|
||||
</div>
|
||||
|
||||
{(media.get('description') || '').length === 0 && (
|
||||
{(media.get('description') || '').length === 0 && !isEditingStatus && (
|
||||
<div className='compose-form__upload__warning'>
|
||||
<button type='button' className='icon-button' onClick={this.handleFocalPointClick}><Icon id='info-circle' /> <FormattedMessage id='upload_form.description_missing' defaultMessage='No description added' /></button>
|
||||
</div>
|
||||
|
|
Reference in New Issue