mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-12 06:23:50 +00:00
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:
parent
aa44a5a8cf
commit
2ddb072661
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user