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

Bug #4340: Get rid of the SCHED_ keys in the info panel

This commit is contained in:
Daniel Molina 2016-02-18 16:07:15 +01:00
parent 69fa02b796
commit dc761a9049

View File

@ -77,7 +77,20 @@ define(function(require) {
var deployId = (typeof(this.element.DEPLOY_ID) == "object" ? "--" : this.element.DEPLOY_ID);
var resched = (parseInt(this.element.RESCHED) ? Locale.tr("yes") : Locale.tr("no"))
var templateTableHTML = TemplateTable.html(this.element.USER_TEMPLATE, RESOURCE, Locale.tr("Attributes"));
// Get rid of the unwanted (for show) SCHED_* keys
var that = this;
var strippedTemplate = {};
var unshownValues = {};
$.each(that.element.USER_TEMPLATE, function(key, value) {
if (!key.match(/^SCHED_*/)) {
strippedTemplate[key] = value;
} else {
unshownValues[key] = value;
}
})
var templateTableHTML = TemplateTable.html(strippedTemplate, RESOURCE, Locale.tr("Attributes"), unshownValues);
var monitoring = $.extend({}, this.element.MONITORING);
delete monitoring.CPU;