You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2021/02/23 09:40:12 UTC

[cloudstack] branch 4.15 updated: ui: fix systevmtype for create service offering form (#4683)

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

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


The following commit(s) were added to refs/heads/4.15 by this push:
     new 06c16ac  ui: fix systevmtype for create service offering form (#4683)
06c16ac is described below

commit 06c16ac8f4dfebadd3be114cd68ae7948ef80bcb
Author: Abhishek Kumar <ab...@gmail.com>
AuthorDate: Tue Feb 23 15:09:43 2021 +0530

    ui: fix systevmtype for create service offering form (#4683)
    
    Fixes #4682
    
    Signed-off-by: Abhishek Kumar <ab...@gmail.com>
---
 ui/src/views/offering/AddComputeOffering.vue | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ui/src/views/offering/AddComputeOffering.vue b/ui/src/views/offering/AddComputeOffering.vue
index fe5895d..eafa875 100644
--- a/ui/src/views/offering/AddComputeOffering.vue
+++ b/ui/src/views/offering/AddComputeOffering.vue
@@ -1052,6 +1052,9 @@ export default {
         if ('isvolatile' in values && values.isvolatile !== undefined) {
           params.isvolatile = values.isvolatile === true
         }
+        if ('systemvmtype' in values && values.systemvmtype !== undefined) {
+          params.systemvmtype = values.systemvmtype
+        }
         if (values.ispublic !== true) {
           var domainIndexes = values.domainid
           var domainId = null