You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by an...@apache.org on 2020/09/07 07:11:19 UTC

[cloudstack-primate] branch master updated: vApps: Send configuration ID

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

andrijapanic 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 b78d517  vApps: Send configuration ID
     new 9d4e083  Merge pull request #667 from shapeblue/vapps-config-id
b78d517 is described below

commit b78d517c5e853285018348b975505936c9aaebed
Author: nvazquez <ni...@gmail.com>
AuthorDate: Sun Sep 6 00:17:27 2020 -0300

    vApps: Send configuration ID
---
 src/views/compute/DeployVM.vue | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/views/compute/DeployVM.vue b/src/views/compute/DeployVM.vue
index 0a679dd..e7fbba3 100644
--- a/src/views/compute/DeployVM.vue
+++ b/src/views/compute/DeployVM.vue
@@ -1297,6 +1297,9 @@ export default {
             deployVmData['details[0].memory'] = values.memory
           }
         }
+        if (this.selectedTemplateConfiguration) {
+          deployVmData['details[0].configurationId'] = this.selectedTemplateConfiguration.id
+        }
         // step 4: select disk offering
         deployVmData.diskofferingid = values.diskofferingid
         if (values.size) {