fix reselect file error
This commit is contained in:
parent
0f757bc101
commit
8067793379
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ const select = state => ({
|
|||
name: makeSelectPublishFormValue('name')(state),
|
||||
title: makeSelectPublishFormValue('title')(state),
|
||||
bidError: makeSelectPublishFormValue('bidError')(state),
|
||||
editingUri: makeSelectPublishFormValue('editingUri')(state),
|
||||
editingURI: makeSelectPublishFormValue('editingURI')(state),
|
||||
uploadThumbnailStatus: makeSelectPublishFormValue('uploadThumbnailStatus')(state),
|
||||
isStillEditing: selectIsStillEditing(state),
|
||||
});
|
||||
|
|
|
@ -28,7 +28,7 @@ function PublishFormErrors(props: Props) {
|
|||
{uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS && (
|
||||
<div>{__('Please wait for thumbnail to finish uploading')}</div>
|
||||
)}
|
||||
{!!editingURI && !isStillEditing && !filePath && (
|
||||
{editingURI && !isStillEditing && !filePath && (
|
||||
<div>{__('Please reselect a file after changing the LBRY URL')}</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue