diff --git a/ui/src/views/compute/CreateAutoScaleVmGroup.vue b/ui/src/views/compute/CreateAutoScaleVmGroup.vue
index 1b2ffcfc3ab..de29c9e3505 100644
--- a/ui/src/views/compute/CreateAutoScaleVmGroup.vue
+++ b/ui/src/views/compute/CreateAutoScaleVmGroup.vue
@@ -1205,6 +1205,7 @@ export default {
},
zones: {
list: 'listZones',
+ networktype: 'Advanced',
isLoad: true,
field: 'zoneid'
},
@@ -2552,7 +2553,7 @@ export default {
const args = { listall: true, showicon: true }
if (zoneId) args.id = zoneId
api(param.list, args).then(json => {
- const zoneResponse = json.listzonesresponse.zone || []
+ const zoneResponse = (json.listzonesresponse.zone || []).filter(item => item.securitygroupsenabled === false)
if (listZoneAllow && listZoneAllow.length > 0) {
zoneResponse.map(zone => {
if (listZoneAllow.includes(zone.id)) {
diff --git a/ui/src/views/network/CreateIsolatedNetworkForm.vue b/ui/src/views/network/CreateIsolatedNetworkForm.vue
index 28169cff9a8..33502d67963 100644
--- a/ui/src/views/network/CreateIsolatedNetworkForm.vue
+++ b/ui/src/views/network/CreateIsolatedNetworkForm.vue
@@ -85,6 +85,36 @@
+
+
+
+
+ { handleAccountChange(accounts[val]) }">
+
+ {{ opt.name || opt.description }}
+
+
+
+
+
+
+
+
+
@@ -261,28 +291,6 @@
-
-
-
-
-
-
-
-
-
-
-
-