Add missing system info

This commit is contained in:
Meliox 2026-04-06 16:09:43 +02:00
parent e3a21e6cbd
commit dab7e3b8b6

View File

@ -987,7 +987,20 @@ Ext.define('PVE.node.StatusView', {
title: gettext('Sensor Mod Version'),
textField: 'pveModVersion',
value: '',
},
},
{
itemId: 'sysinfo',
colspan: 2,
printBar: false,
title: gettext('Information'),
textField: 'systemInfo',
renderer: function(value) {
if (value === null || value === undefined) {
return '';
}
return value;
}
},
],
updateTitle: function () {