mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-13 09:20:13 +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];
|
var ui = me.query('#versioninfo')[0];
|
||||||
|
|
||||||
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;
|
|
||||||
ui.update('Virtual Environment ' + version);
|
ui.update('Virtual Environment ' + version);
|
||||||
} else {
|
} else {
|
||||||
ui.update('Virtual Environment');
|
ui.update('Virtual Environment');
|
||||||
|
Loading…
Reference in New Issue
Block a user