Fix incorrect context for 'New' string
This commit is contained in:
parent
31523d769a
commit
fcea4005eb
1 changed files with 6 additions and 1 deletions
|
@ -449,7 +449,12 @@ function PublishFile(props: Props) {
|
||||||
{publishing && <Spinner type={'small'} />}
|
{publishing && <Spinner type={'small'} />}
|
||||||
{inProgress && (
|
{inProgress && (
|
||||||
<div>
|
<div>
|
||||||
<Button button="close" label={__('New')} icon={ICONS.REFRESH} onClick={clearPublish} />
|
<Button
|
||||||
|
button="close"
|
||||||
|
label={__('New --[clears Publish Form]--')}
|
||||||
|
icon={ICONS.REFRESH}
|
||||||
|
onClick={clearPublish}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue