fix(VM/disks/attach): confusing button label (#2520)

This commit is contained in:
Pierre Donias
2017-12-06 16:19:06 +01:00
committed by Julien Fontanet
parent 1ce7d94261
commit 072401f600
2 changed files with 3 additions and 2 deletions

View File

@@ -763,6 +763,7 @@ const messages = {
vbdReadonly: 'Readonly',
vbdAction: 'Action',
vbdCreate: 'Create',
vbdAttach: 'Attach',
vbdNamePlaceHolder: 'Disk name',
vbdSizePlaceHolder: 'Size',
cdDriveNotInstalled: 'CD drive not completely installed',

View File

@@ -282,12 +282,12 @@ class AttachDisk extends Component {
</div>
<span className='pull-right'>
<ActionButton
icon='add'
icon='connect'
form='attachDiskForm'
btnStyle='primary'
handler={this._addVdi}
>
{_('vbdCreate')}
{_('vbdAttach')}
</ActionButton>
</span>
</fieldset>