mirror of https://github.com/apache/cloudstack.git
UI: fix missing networkid and zoneid when add instance from vpc network (#7151)
This commit is contained in:
parent
c78a777d3a
commit
bcf5ff1ec8
|
|
@ -68,7 +68,7 @@
|
|||
type="dashed"
|
||||
style="margin-bottom: 15px; width: 100%"
|
||||
:disabled="!('deployVirtualMachine' in $store.getters.apis)"
|
||||
@click="$router.push({ path: '/action/deployVirtualMachine?networkid=' + network.id + '&zoneid=' + network.zoneid })">
|
||||
@click="$router.push({ path: '/action/deployVirtualMachine', query: { networkid: network.id, zoneid: network.zoneid } })">
|
||||
<template #icon><plus-outlined /></template>
|
||||
{{ $t('label.vm.add') }}
|
||||
</a-button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue