From ffaca016add52f535e792811fe27939ce2782267 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 11 Nov 2020 07:27:21 +0100 Subject: [PATCH] ui: datastore summary: drop removed bytes display Signed-off-by: Thomas Lamprecht --- www/datastore/Summary.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/www/datastore/Summary.js b/www/datastore/Summary.js index 5c757e8c..41fd7c85 100644 --- a/www/datastore/Summary.js +++ b/www/datastore/Summary.js @@ -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'),