From 57dfd3176cdf04eedca70a69e82f813a4502d287 Mon Sep 17 00:00:00 2001 From: Frederick Borges Date: Wed, 25 Jan 2023 11:25:16 +0100 Subject: [PATCH] B #6096: Fix typo causing errors (#2459) (cherry picked from commit 85832d9089e48e32ff6a760fb6b2af8eb837435e) --- .../form-panels/create/wizard-tabs/general/capacity-inputs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/general/capacity-inputs.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/general/capacity-inputs.js index 3f1a2fc597..1c80908b9d 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/general/capacity-inputs.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/general/capacity-inputs.js @@ -199,7 +199,7 @@ define(function(require) { var vcpuValue = $("div.vcpu_input input", context).val(); if (vcpuValue !== "") { CoresPerSocket.generateCores(VCPU_SELECTOR); - if(element && element.TEMPLATE && element.TEMPLATE.TOPOLOGY && element.TEMPLATE.TOPOOGY.CORES) { + if(element && element.TEMPLATE && element.TEMPLATE.TOPOLOGY && element.TEMPLATE.TOPOLOGY.CORES) { CoresPerSocket.selectOption(element.TEMPLATE.TOPOLOGY.CORES); } }