]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: tape: code style: xtype coms first
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 8 Mar 2021 09:29:50 +0000 (10:29 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 8 Mar 2021 13:35:36 +0000 (14:35 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/tape/TapeManagement.js

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