weizhouapache commented on PR #13423:
URL: https://github.com/apache/cloudstack/pull/13423#issuecomment-4716257464

   thanks @Pearl1594 for the info
   
   I can reproduce the issue.
   
   the fix could be as  simple as
   ```
   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) => {
   ```
   :facepalm: 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to