]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/VirusDetectorConfiguration.js
fix #4238: spam info grid: enable sorting & add colors for spam score
[pmg-gui.git] / js / VirusDetectorConfiguration.js
index 86ab9f6e711109190019dfd55396d1d30d53d6ef..ab744282b29c1fa77cb2c898b17cd37e15d69a0d 100644 (file)
@@ -5,20 +5,26 @@ Ext.define('PMG.VirusDetectorConfiguration', {
     title: gettext('Configuration') + ': ' +
        gettext('Virus Detector'),
 
+    border: false,
+    defaults: { border: false },
+
     items: [
        {
            title: gettext('Options'),
-           xtype: 'pmgVirusDetectorOptions'
+           itemId: 'options',
+           xtype: 'pmgVirusDetectorOptions',
        },
        {
            title: gettext('ClamAV'),
-           html: 'ClamAV'
+           itemId: 'clamav',
+           xtype: 'pmgClamAVDatabase',
        },
        {
            title: gettext('Quarantine'),
-           xtype: 'pmgVirusQuarantineOptions'
-       }
-    ]
+           itemId: 'quarantine',
+           xtype: 'pmgVirusQuarantineOptions',
+       },
+    ],
 });