fix: Update locked button label

pull/16609/head
Mrugesh Mohapatra 2018-01-31 01:30:33 +05:30
parent fc95bcb667
commit 9fa89ee1b0
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import { Button, Tooltip, OverlayTrigger } from 'react-bootstrap';
const unlockWarning = ( const unlockWarning = (
<Tooltip id='tooltip'> <Tooltip id='tooltip'>
<h4> <h4>
<strong>Careful!</strong> Only run code you trust <strong>Careful!</strong> Only run code you trust.
</h4> </h4>
</Tooltip> </Tooltip>
); );
@ -73,7 +73,7 @@ export default class ToolPanel extends PureComponent {
className='btn-big' className='btn-big'
onClick={ unlockUntrustedCode } onClick={ unlockUntrustedCode }
> >
Code Locked. Unlock? I trust this code. Unlock it.
</Button> </Button>
</OverlayTrigger> </OverlayTrigger>
); );