ui: datastore summary: drop removed bytes display

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-11-11 07:27:21 +01:00
parent 71f82a98d7
commit ffaca016ad

View File

@ -34,7 +34,6 @@ Ext.define('PBS.DataStoreInfo', {
countstext: '',
usage: {},
stillbad: 0,
removedbytes: 0,
mountpoint: "",
},
},
@ -69,7 +68,6 @@ Ext.define('PBS.DataStoreInfo', {
vm.set('hostcount', countstext(counts.host));
vm.set('deduplication', dedup.toFixed(2));
vm.set('stillbad', gcstatus['still-bad']);
vm.set('removedbytes', Proxmox.Utils.format_size(gcstatus['removed-bytes']));
},
startStore: function() { this.store.startUpdate(); },
@ -159,16 +157,6 @@ Ext.define('PBS.DataStoreInfo', {
},
},
},
{
iconCls: 'fa fa-fw fa-trash-o',
title: gettext('Removed Bytes'),
printBar: false,
bind: {
data: {
text: '{removedbytes}',
},
},
},
{
iconCls: 'fa critical fa-fw fa-exclamation-triangle',
title: gettext('Bad Chunks'),