This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.16 by this push:
     new 14d09a9  check security groups in basic zones (#5746)
14d09a9 is described below

commit 14d09a9fabc8978db9e4690e1d475bea1377f27f
Author: dahn <[email protected]>
AuthorDate: Fri Dec 3 06:47:55 2021 +0100

    check security groups in basic zones (#5746)
    
    Co-authored-by: Daan Hoogland <[email protected]>
---
 ui/src/views/compute/DeployVM.vue | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ui/src/views/compute/DeployVM.vue 
b/ui/src/views/compute/DeployVM.vue
index bb480b5..1608e35 100644
--- a/ui/src/views/compute/DeployVM.vue
+++ b/ui/src/views/compute/DeployVM.vue
@@ -1651,9 +1651,9 @@ export default {
               }
             }
           }
-          if (this.securitygroupids.length > 0) {
-            deployVmData.securitygroupids = this.securitygroupids.join(',')
-          }
+        }
+        if (this.securitygroupids.length > 0) {
+          deployVmData.securitygroupids = this.securitygroupids.join(',')
         }
         // step 7: select ssh key pair
         deployVmData.keypair = values.keypair

Reply via email to