]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/VirusCharts.js
user view: disable unlock TFA button initially
[pmg-gui.git] / js / VirusCharts.js
index febecd5a33a3057ff61efe341491699dcafb36d7..8f40a3ec51a140f333442d66c87111545478b684 100644 (file)
@@ -3,40 +3,41 @@ Ext.define('PMG.VirusCharts', {
     xtype: 'pmgVirusCharts',
 
     title: gettext('Statistics') + ': ' + gettext('Virus Charts'),
-    
+
+    border: false,
     disableSelection: true,
 
-    tbar: [ { xtype: 'pmgStatTimeSelector' } ],
+    tbar: [{ xtype: 'pmgStatTimeSelector' }],
 
-    emptyText: gettext('No data in database.'),
+    emptyText: gettext('No data in database'),
     viewConfig: {
-       deferEmptyText: false
+       deferEmptyText: false,
     },
 
     store: {
        xclass: 'PMG.data.StatStore',
-       fields: [ 'name', 'count' ],
-       staturl: "/api2/json/statistics/virus"
+       fields: ['name', 'count'],
+       staturl: "/api2/json/statistics/virus",
     },
 
     columns: [
        {
            header: gettext('Name'),
            flex: 1,
-           dataIndex: 'name'
+           dataIndex: 'name',
        },
        {
            header: gettext('Count'),
            width: 150,
-           dataIndex: 'count'
-       }
+           dataIndex: 'count',
+       },
     ],
 
     initComponent: function() {
        var me = this;
-       
+
        me.callParent();
-       
+
        Proxmox.Utils.monStoreErrors(me, me.store);
-    }
+    },
 });