diff --git a/ui/src/config/section/infra/systemVms.js b/ui/src/config/section/infra/systemVms.js index 4a5879b17626..587424d32e89 100644 --- a/ui/src/config/section/infra/systemVms.js +++ b/ui/src/config/section/infra/systemVms.js @@ -100,14 +100,15 @@ export default { label: 'label.change.service.offering', message: 'message.confirm.scale.up.system.vm', dataView: true, - show: (record) => { return record.state === 'Running' && record.hypervisor === 'VMware' || record.state === 'Stopped' }, + show: (record) => { return record.state === 'Running' && (record.hypervisor === 'VMware' || record.hypervisor === 'KVM') || record.state === 'Stopped' }, args: ['serviceofferingid'], mapping: { serviceofferingid: { api: 'listServiceOfferings', params: (record) => { return { virtualmachineid: record.id, issystem: true, systemvmtype: record.systemvmtype } } } - } + }, + popup: true }, { api: 'migrateSystemVm',