proxmox-backup/www/tape/TapeManagement.js
Dominik Csapak 7eefd0c3d7 ui: tape: ChangerStatus: remove changerselector combobox
because we now select it directly in the left-hand tree
so we have to adapt the changer to the one set by the router
and not by the drop down field

and remove it from the TapeManagement tabpanel

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2021-03-01 12:36:09 +01:00

51 lines
950 B
JavaScript

Ext.define('PBS.TapeManagement', {
extend: 'Ext.tab.Panel',
alias: 'widget.pbsTapeManagement',
title: gettext('Tape Backup'),
border: true,
defaults: {
border: false,
xtype: 'panel',
},
items: [
{
title: gettext('Content'),
itemId: 'content',
xtype: 'pbsBackupOverview',
},
{
title: gettext('Inventory'),
itemId: 'inventory',
xtype: 'pbsTapeInventory',
},
{
title: gettext('Changers'),
itemId: 'changers',
xtype: 'pbsTapeChangerPanel',
},
{
title: gettext('Drives'),
itemId: 'drives',
xtype: 'pbsTapeDrivePanel',
},
{
title: gettext('Media Pools'),
itemId: 'pools',
xtype: 'pbsMediaPoolPanel',
},
{
title: gettext('Encryption Keys'),
itemId: 'encryption-keys',
xtype: 'pbsEncryptionKeys',
},
{
title: gettext('Backup Jobs'),
itemId: 'tape-backup-jobs',
xtype: 'pbsTapeBackupJobView',
},
],
});