ui: tape: code style: xtype coms first

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-03-08 10:29:50 +01:00
parent 6446a078a0
commit 4fb068019e

View File

@ -14,24 +14,24 @@ Ext.define('PBS.TapeManagement', {
items: [ items: [
{ {
xtype: 'pbsBackupOverview',
title: gettext('Content'), title: gettext('Content'),
itemId: 'content', itemId: 'content',
xtype: 'pbsBackupOverview',
}, },
{ {
xtype: 'pbsTapeInventory',
title: gettext('Inventory'), title: gettext('Inventory'),
itemId: 'inventory', itemId: 'inventory',
xtype: 'pbsTapeInventory',
}, },
{ {
xtype: 'pbsTapeChangerPanel',
title: gettext('Changers'), title: gettext('Changers'),
itemId: 'changers', itemId: 'changers',
xtype: 'pbsTapeChangerPanel',
}, },
{ {
xtype: 'pbsTapeDrivePanel',
title: gettext('Drives'), title: gettext('Drives'),
itemId: 'drives', itemId: 'drives',
xtype: 'pbsTapeDrivePanel',
}, },
{ {
title: gettext('Media Pools'), title: gettext('Media Pools'),
@ -39,14 +39,14 @@ Ext.define('PBS.TapeManagement', {
xtype: 'pbsMediaPoolPanel', xtype: 'pbsMediaPoolPanel',
}, },
{ {
xtype: 'pbsEncryptionKeys',
title: gettext('Encryption Keys'), title: gettext('Encryption Keys'),
itemId: 'encryption-keys', itemId: 'encryption-keys',
xtype: 'pbsEncryptionKeys',
}, },
{ {
xtype: 'pbsTapeBackupJobView',
title: gettext('Backup Jobs'), title: gettext('Backup Jobs'),
itemId: 'tape-backup-jobs', itemId: 'tape-backup-jobs',
xtype: 'pbsTapeBackupJobView',
}, },
], ],
}); });