Do not display the abbreviated commit SHA-1 in the workspace version string

This string is ugly and unfit for human consumption for 99% of our users.
The same information is available in a number of place in the GUI via Node
Summary, Package Versions, Subscription (Report)
This commit is contained in:
Emmanuel Kasper 2017-07-06 14:01:28 +02:00 committed by Wolfgang Bumiller
parent aa44a5a8cf
commit 2ddb072661

View File

@ -179,8 +179,7 @@ Ext.define('PVE.StdWorkspace', {
var ui = me.query('#versioninfo')[0];
if (PVE.VersionInfo) {
var version = PVE.VersionInfo.version + '-' + PVE.VersionInfo.release + '/' +
PVE.VersionInfo.repoid;
var version = PVE.VersionInfo.version + '-' + PVE.VersionInfo.release;
ui.update('Virtual Environment ' + version);
} else {
ui.update('Virtual Environment');