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 && (
|
||||
<div>
|
||||
<p>
|
||||
<a
|
||||
className="link"
|
||||
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.MANUAL })}
|
||||
>
|
||||
Enter URL Manually
|
||||
</a>
|
||||
</div>
|
||||
</p>
|
||||
)}
|
||||
|
||||
{status === statuses.MANUAL && (
|
||||
<div>
|
||||
<p>
|
||||
<a
|
||||
className="link"
|
||||
onClick={() => updatePublishForm({ uploadThumbnailStatus: statuses.READY })}
|
||||
>
|
||||
Upload Thumbnail
|
||||
</a>
|
||||
</div>
|
||||
</p>
|
||||
)}
|
||||
|
||||
{status === statuses.IN_PROGRESS && <div>uploading...</div>}
|
||||
|
|
Loading…
Add table
Reference in a new issue