From dc33d72fc13ed7b04dfe3d8e65b4a6fb1e75f105 Mon Sep 17 00:00:00 2001 From: juanmont Date: Tue, 18 Dec 2018 10:06:18 +0100 Subject: [PATCH] F #2652: Erased custom classes for tabs --- .../templates-tab/form-panels/create/wizard-tabs/context.js | 2 +- .../templates-tab/form-panels/create/wizard-tabs/network.js | 2 +- .../templates-tab/form-panels/create/wizard-tabs/storage.js | 2 +- .../templates-tab/form-panels/create/wizard-tabs/vmgroup.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/context.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/context.js index a4508176e9..97f8831e88 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/context.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/context.js @@ -55,7 +55,7 @@ define(function(require) { this.wizardTabId = WIZARD_TAB_ID + UniqueId.id(); this.icon = 'fa-folder'; this.title = Locale.tr("Context"); - this.classes = "hypervisor only_kvm only_vcenter"; + this.classes = "hypervisor"; this.contextFilesTable = new FilesTable('ContextTable' + UniqueId.id(), { 'select': true, diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/network.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/network.js index 356c36f3f6..31ad7502d7 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/network.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/network.js @@ -53,7 +53,7 @@ define(function(require) { this.wizardTabId = WIZARD_TAB_ID + UniqueId.id(); this.icon = 'fa-globe'; this.title = Locale.tr("Network"); - this.classes = "hypervisor only_kvm only_vcenter"; + this.classes = "hypervisor"; if(opts.listener != undefined){ this.listener = opts.listener; diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage.js index ec4ca89528..8eaaeca6d4 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage.js @@ -54,7 +54,7 @@ define(function(require) { this.wizardTabId = WIZARD_TAB_ID + UniqueId.id(); this.icon = 'fa-server'; this.title = Locale.tr("Storage"); - this.classes = "hypervisor only_kvm only_vcenter" + this.classes = "hypervisor" if(opts.listener != undefined){ this.listener = opts.listener; diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/vmgroup.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/vmgroup.js index 1ed3fb1770..1816e38de4 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/vmgroup.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/vmgroup.js @@ -47,7 +47,7 @@ define(function(require) { this.wizardTabId = WIZARD_TAB_ID + UniqueId.id(); this.icon = 'fa-folder-open'; this.title = Locale.tr("VM Group"); - this.classes = "hypervisor only_kvm only_vcenter" + this.classes = "hypervisor" }