ui: do not show MediaSet Uuid in backup content grid

This commit is contained in:
Dietmar Maurer 2021-03-04 17:09:57 +01:00
parent cd5d6103ea
commit 1576c7a0d9
1 changed files with 4 additions and 5 deletions

View File

@ -242,22 +242,21 @@ Ext.define('PBS.TapeManagement.BackupOverview', {
flex: 3, flex: 3,
}, },
{ {
text: gettext('Number of Tapes'), text: gettext('Tapes'),
dataIndex: 'tapes', dataIndex: 'tapes',
sortable: false, sortable: false,
flex: 1,
}, },
{ {
text: gettext('Tape Number'), text: gettext('Seq. Nr.'),
dataIndex: 'seq-nr', dataIndex: 'seq-nr',
sortable: false, sortable: false,
flex: 1,
}, },
{ {
text: gettext('Media Set UUID'), text: gettext('Media Set UUID'),
dataIndex: 'media-set-uuid', dataIndex: 'media-set-uuid',
hidden: true,
sortable: false, sortable: false,
flex: 1, width: 280,
}, },
], ],
}); });