From bca73fb1dd6f11c3d32c9a056abce60a55d1eb6e Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Tue, 6 Apr 2021 19:27:51 +0200 Subject: [PATCH] B #5318: Fix context section in vn template form (#1072) (cherry picked from commit 7cacb2981a3ecf28c7a72de83136985769a3f966) --- .../app/tabs/vnets-templates-tab/form-panels/instantiate.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sunstone/public/app/tabs/vnets-templates-tab/form-panels/instantiate.js b/src/sunstone/public/app/tabs/vnets-templates-tab/form-panels/instantiate.js index 3ada6d7766..d3723eecd4 100644 --- a/src/sunstone/public/app/tabs/vnets-templates-tab/form-panels/instantiate.js +++ b/src/sunstone/public/app/tabs/vnets-templates-tab/form-panels/instantiate.js @@ -91,6 +91,7 @@ define(function(require) { function _setup(context) { this.arTemplates = []; + CustomTagsTable.setup(context) } function _submitWizard(context) { @@ -116,6 +117,8 @@ define(function(require) { $.extend(extra_info["template"], WizardFields.retrieve($("#instantiateContext", context))); + $.extend(extra_info["template"], CustomTagsTable.retrieve(context)); + var secgroups = that.securityGroupsTable.retrieveResourceTableSelect(); if (secgroups != undefined && secgroups.length != 0) { extra_info["template"]["SECURITY_GROUPS"] = secgroups.join(",");