1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

B #5115: remove old image data (#280)

Signed-off-by: Jorge Lobo <jlobo@opennebula.io>

Co-authored-by: Jorge Lobo <jlobo@opennebula.systems>
This commit is contained in:
Jorge Miguel Lobo Escalona 2020-10-02 13:10:22 +02:00 committed by GitHub
parent c0e95ab953
commit 4f9a684a0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ define(function(require) {
var Config = require("sunstone-config");
var Locale = require("utils/locale");
var Tips = require("utils/tips");
var ImageTable = require("tabs/images-tab/datatable")
var ImageTable = require("tabs/images-tab/datatable");
var WizardFields = require("utils/wizard-fields");
var UniqueId = require("utils/unique-id");
var TemplateUtils = require("utils/template-utils");
@ -82,6 +82,7 @@ define(function(require) {
"select_callback": function(aData, options) {
// If the image is selected by Id, avoid overwriting it with name+uname
if ($("#IMAGE_ID", context).val() != aData[options.id_index]) {
$("input[wizard_field]", context).val("");
$("#IMAGE_ID", context).val("");
$("#IMAGE", context).val(aData[options.name_index]);
$("#IMAGE_UNAME", context).val(aData[options.uname_index]);
@ -90,7 +91,7 @@ define(function(require) {
}
}
});
$("table#"+this.imageTable.dataTableId).css("table-layout", "fixed")
$("table#"+this.imageTable.dataTableId).css("table-layout", "fixed");
that.imageTable.refreshResourceTableSelect();
// Select Image or Volatile disk. The div is hidden depending on the selection, and the
@ -209,7 +210,7 @@ define(function(require) {
tmpl.SIZE = tmpl.SIZE * 1048576;
tmpl.SIZE = tmpl.SIZE.toString();
}
var formatKvm = $("#FORMAT_KVM", context).val();
var formatVcenter = $("#FORMAT_VCENTER", context).val();
@ -247,7 +248,7 @@ define(function(require) {
if (templateJSON.IMAGE_ID != undefined) {
var selectedResources = {
ids : templateJSON.IMAGE_ID
}
};
this.imageTable.selectResourceTableSelect(selectedResources);
@ -257,7 +258,7 @@ define(function(require) {
name: templateJSON.IMAGE,
uname: templateJSON.IMAGE_UNAME
}
}
};
this.imageTable.selectResourceTableSelect(selectedResources);
}