This is an automated email from the ASF dual-hosted git repository.
weizhouapache pushed a commit to branch 4.20
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push:
new 4244c2cc102 UI: Allow selecting network for VNF nics if template is a
non deploy-as-is template (#13423)
4244c2cc102 is described below
commit 4244c2cc102cc7decfb166147adf5161c8e29f1f
Author: Pearl Dsilva <[email protected]>
AuthorDate: Thu Jun 18 02:28:44 2026 -0400
UI: Allow selecting network for VNF nics if template is a non deploy-as-is
template (#13423)
* Allow selecting network for VNF nics if template nics > 0 and is a
non-deploy as is template
* delpoy as is param not required
---------
Co-authored-by: Pearl Dsilva <[email protected]>
---
ui/src/views/compute/wizard/VnfNicsSelection.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/views/compute/wizard/VnfNicsSelection.vue
b/ui/src/views/compute/wizard/VnfNicsSelection.vue
index 40bdc1c676a..538c9553eb4 100644
--- a/ui/src/views/compute/wizard/VnfNicsSelection.vue
+++ b/ui/src/views/compute/wizard/VnfNicsSelection.vue
@@ -50,7 +50,7 @@
<template #network="{ record }">
<a-form-item style="display: block" :name="'nic-' + record.deviceid">
<a-select
- disabled="templateNics && templateNics.length > 0"
+ :disabled="templateNics && templateNics.length > 0"
@change="updateNicNetworkValue($event, record.deviceid)"
optionFilterProp="label"
:filterOption="(input, option) => {