Merge pull request #16609 from raisedadead/fix/code-locked-btn-label

fix: Update locked button label
This commit is contained in:
Berkeley Martinez
2018-01-30 18:14:19 -08:00
committed by GitHub

View File

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