]> git.proxmox.com Git - pmg-gui.git/commitdiff
GeneralMailStatistics.js: rename traffic_in/out to bytes_in/out
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 1 Sep 2017 05:43:11 +0000 (07:43 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 1 Sep 2017 05:43:11 +0000 (07:43 +0200)
js/GeneralMailStatistics.js

index ed2be73d18dfe484050b1ad8fdccdc089b1000f9..e9a65c27b7398e41e0c487fd7cbf88235f8c19f2 100644 (file)
@@ -119,12 +119,12 @@ Ext.define('PMG.GeneralMailStatistics', {
 
        res.push({
            name: gettext("Incoming Mail Traffic"),
-           value: Ext.Number.toFixed(data.traffic_in/(1024*1024), 2) + ' MByte'
+           value: Ext.Number.toFixed(data.bytes_in/(1024*1024), 2) + ' MByte'
        });
 
        res.push({
            name: gettext("Outgoing Mail Traffic"),
-           value: Ext.Number.toFixed(data.traffic_out/(1024*1024), 2) + ' MByte'
+           value: Ext.Number.toFixed(data.bytes_out/(1024*1024), 2) + ' MByte'
        });
        return res;
     },