]> git.proxmox.com Git - pmg-gui.git/blame - js/VirusDetectorConfiguration.js
fix #5251: login: set autocomplete on password and user
[pmg-gui.git] / js / VirusDetectorConfiguration.js
CommitLineData
08e5c6cf
DM
1Ext.define('PMG.VirusDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgVirusDetectorConfiguration',
4
5 title: gettext('Configuration') + ': ' +
6 gettext('Virus Detector'),
7
830e5827
DM
8 border: false,
9 defaults: { border: false },
10
08e5c6cf
DM
11 items: [
12 {
13 title: gettext('Options'),
61415efa 14 itemId: 'options',
c87d46fb 15 xtype: 'pmgVirusDetectorOptions',
08e5c6cf
DM
16 },
17 {
18 title: gettext('ClamAV'),
61415efa 19 itemId: 'clamav',
c87d46fb 20 xtype: 'pmgClamAVDatabase',
08e5c6cf
DM
21 },
22 {
23 title: gettext('Quarantine'),
61415efa 24 itemId: 'quarantine',
c87d46fb
TL
25 xtype: 'pmgVirusQuarantineOptions',
26 },
27 ],
08e5c6cf
DM
28});
29
30