mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-11 13:09:44 +00:00
change div tags to p tags for padding
This commit is contained in:
parent
05caa06aa7
commit
f49598bd4b
1 changed files with 4 additions and 4 deletions
|
@ -49,25 +49,25 @@ class SelectThumbnail extends React.PureComponent<Props> {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{status === statuses.READY && (
|
{status === statuses.READY && (
|
||||||
<div>
|
<p>
|
||||||
<a
|
<a
|
||||||
className="link"
|
className="link"
|
||||||
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.MANUAL })}
|
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.MANUAL })}
|
||||||
>
|
>
|
||||||
Enter URL Manually
|
Enter URL Manually
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{status === statuses.MANUAL && (
|
{status === statuses.MANUAL && (
|
||||||
<div>
|
<p>
|
||||||
<a
|
<a
|
||||||
className="link"
|
className="link"
|
||||||
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.READY })}
|
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.READY })}
|
||||||
>
|
>
|
||||||
Upload Thumbnail
|
Upload Thumbnail
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{status === statuses.IN_PROGRESS && <div>uploading...</div>}
|
{status === statuses.IN_PROGRESS && <div>uploading...</div>}
|
||||||
|
|
Loading…
Add table
Reference in a new issue