We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b85d0f commit 91cc0d1Copy full SHA for 91cc0d1
ui/src/views/compute/DeployVM.vue
@@ -275,7 +275,7 @@
275
</a-select>
276
</a-form-item>
277
</div>
278
- <div v-else>
+ <div v-show="!(vm.templateid && templateNics && templateNics.length > 0)" >
279
<network-selection
280
v-if="!networkId"
281
:items="options.networks"
@@ -1334,6 +1334,12 @@ export default {
1334
arrNetwork.push(ipToNetwork)
1335
}
1336
1337
+ } else {
1338
+ this.$notification.error({
1339
+ message: this.$t('message.request.failed'),
1340
+ description: this.$t('message.step.4.continue')
1341
+ })
1342
+ return
1343
1344
for (let j = 0; j < arrNetwork.length; j++) {
1345
deployVmData['iptonetworklist[' + j + '].networkid'] = arrNetwork[j].networkid
0 commit comments