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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0476c71  zone id appears wrong (#717)
0476c71 is described below

commit 0476c71508b1b9c92b0eb24705e419f27770135e
Author: Pearl Dsilva <[email protected]>
AuthorDate: Tue Sep 15 18:55:27 2020 +0530

    zone id appears wrong (#717)
    
    Co-authored-by: Pearl Dsilva <[email protected]>
---
 src/views/compute/DeployVM.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/compute/DeployVM.vue b/src/views/compute/DeployVM.vue
index 0738556..3ea0bd7 100644
--- a/src/views/compute/DeployVM.vue
+++ b/src/views/compute/DeployVM.vue
@@ -1590,7 +1590,7 @@ export default {
             if (this.$route.query.zoneid) {
               zoneid = this.$route.query.zoneid
             } else if (this.options.zones.length === 1) {
-              zoneid = 'this.options.zones[0].id'
+              zoneid = this.options.zones[0].id
             }
             if (zoneid) {
               this.form.getFieldDecorator(['zoneid'], { initialValue: zoneid })

Reply via email to