Commit 03246aa7 authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

remove hardcoded span html tag, as it appears to be unused

parent d62bbe22
...@@ -260,9 +260,9 @@ Ext.define('PVE.StdWorkspace', { ...@@ -260,9 +260,9 @@ Ext.define('PVE.StdWorkspace', {
if (PVE.VersionInfo) { if (PVE.VersionInfo) {
var version = PVE.VersionInfo.version + '-' + PVE.VersionInfo.release + '/' + var version = PVE.VersionInfo.version + '-' + PVE.VersionInfo.release + '/' +
PVE.VersionInfo.repoid; 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 { } else {
ui.update('<span class="x-panel-header-text">Proxmox Virtual Environment</span>'); ui.update('Proxmox Virtual Environment');
} }
ui.doLayout(); ui.doLayout();
}, },
...@@ -381,7 +381,7 @@ Ext.define('PVE.StdWorkspace', { ...@@ -381,7 +381,7 @@ Ext.define('PVE.StdWorkspace', {
minWidth: 200, minWidth: 200,
flex: 1, flex: 1,
id: 'versioninfo', id: 'versioninfo',
html: '<span class="x-panel-header-text">Proxmox Virtual Environment</span>', html: 'Proxmox Virtual Environment',
height: 30 height: 30
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment