ui: use base 10 (SI) for all storage related displays
matches what we do for (most) of such things in PVE since 7.0 there and also what the disk management gui shows, further disks are sold with SI units for their advertised capacity, so its more fitting there too. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
@ -114,7 +114,7 @@ Ext.define('PBS.NodeInfoPanel', {
|
||||
title: gettext('HD space') + '(root)',
|
||||
valueField: 'root',
|
||||
maxField: 'root',
|
||||
renderer: Proxmox.Utils.render_node_size_usage,
|
||||
renderer: ({ used, total }) => Proxmox.Utils.render_size_usage(used, total, true),
|
||||
},
|
||||
{
|
||||
iconCls: 'pmx-icon-size fa fa-fw fa-refresh',
|
||||
|
Reference in New Issue
Block a user