[pve-devel] [PATCH 3/3] remove hardcoded span html tag, as it appears to be unused
Emmanuel Kasper
e.kasper at proxmox.com
Tue May 19 08:37:01 CEST 2015
---
www/manager5/Workspace.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/www/manager5/Workspace.js b/www/manager5/Workspace.js
index 4e9e2e0..d4e0156 100644
--- a/www/manager5/Workspace.js
+++ b/www/manager5/Workspace.js
@@ -260,9 +260,9 @@ Ext.define('PVE.StdWorkspace', {
if (PVE.VersionInfo) {
var version = PVE.VersionInfo.version + '-' + PVE.VersionInfo.release + '/' +
PVE.VersionInfo.repoid;
- ui.update('<span class="x-panel-header-text">Proxmox Virtual Environment<br>' + gettext('Version') + ': ' + version + "</span>");
+ ui.update('Proxmox Virtual Environment<br>' + gettext('Version') + ': ' + version);
} else {
- ui.update('<span class="x-panel-header-text">Proxmox Virtual Environment</span>');
+ ui.update('Proxmox Virtual Environment');
}
ui.doLayout();
},
@@ -381,7 +381,7 @@ Ext.define('PVE.StdWorkspace', {
minWidth: 200,
flex: 1,
id: 'versioninfo',
- html: '<span class="x-panel-header-text">Proxmox Virtual Environment</span>',
+ html: 'Proxmox Virtual Environment',
height: 30
},
{
--
2.1.4
More information about the pve-devel
mailing list