You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by nv...@apache.org on 2021/09/14 05:47:05 UTC

[cloudstack] branch main updated: ui: Fix Scale VM failure - missing args when customized compute offering is used (#5439)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 7c7b624  ui: Fix Scale VM failure - missing args when customized compute offering is used (#5439)
7c7b624 is described below

commit 7c7b6249557eacbc882fb7c7cb293eecaeca14d3
Author: Pearl Dsilva <pe...@gmail.com>
AuthorDate: Tue Sep 14 11:16:40 2021 +0530

    ui: Fix Scale VM failure - missing args when customized compute offering is used (#5439)
---
 ui/src/views/compute/ScaleVM.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/views/compute/ScaleVM.vue b/ui/src/views/compute/ScaleVM.vue
index a7b6c18..a0cf5b1 100644
--- a/ui/src/views/compute/ScaleVM.vue
+++ b/ui/src/views/compute/ScaleVM.vue
@@ -33,8 +33,8 @@
 
     <compute-selection
       v-if="selectedOffering && (selectedOffering.iscustomized || selectedOffering.iscustomizediops)"
-      :cpunumber-input-decorator="cpuNumberKey"
-      :cpuspeed-input-decorator="cpuSpeedKey"
+      :cpu-number-input-decorator="cpuNumberKey"
+      :cpu-speed-input-decorator="cpuSpeedKey"
       :memory-input-decorator="memoryKey"
       :computeOfferingId="selectedOffering.id"
       :isConstrained="'serviceofferingdetails' in selectedOffering"