1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

B #5831: Put back IO section in VM updateconf (#2104)

This commit is contained in:
Frederick Borges 2022-05-30 19:14:03 +02:00 committed by GitHub
parent 4448ec99e7
commit a63f38b47a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,9 +39,10 @@ define(function(require) {
var TAB_ID = require("../tabId");
var TEMPLATE_TAB_ID = require("tabs/templates-tab/tabId");
var WIZARD_TABS = [
require('tabs/templates-tab/form-panels/create/wizard-tabs/os'),
require('tabs/templates-tab/form-panels/create/wizard-tabs/context'),
require('tabs/templates-tab/form-panels/create/wizard-tabs/other')
require("tabs/templates-tab/form-panels/create/wizard-tabs/os"),
require("tabs/templates-tab/form-panels/create/wizard-tabs/io"),
require("tabs/templates-tab/form-panels/create/wizard-tabs/context"),
require("tabs/templates-tab/form-panels/create/wizard-tabs/other")
];
/*
@ -80,11 +81,11 @@ define(function(require) {
FormPanel.prototype = Object.create(BaseFormPanel.prototype);
FormPanel.prototype.constructor = FormPanel;
FormPanel.prototype.htmlWizard = _htmlWizard;
FormPanel.prototype.htmlAdvanced = config.user_config.default_view === 'cloud' ? undefined : _htmlAdvanced;
FormPanel.prototype.htmlAdvanced = config.user_config.default_view === "cloud" ? undefined : _htmlAdvanced;
FormPanel.prototype.setup = _setup;
FormPanel.prototype.onShow = _onShow;
FormPanel.prototype.submitWizard = _submitWizard;
FormPanel.prototype.submitAdvanced = config.user_config.default_view === 'cloud' ? undefined : _submitAdvanced;
FormPanel.prototype.submitAdvanced = config.user_config.default_view === "cloud" ? undefined : _submitAdvanced;
FormPanel.prototype.fill = _fill;
return FormPanel;