diff options
Diffstat (limited to 'web/app/view/ReportController.js')
-rw-r--r-- | web/app/view/ReportController.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/app/view/ReportController.js b/web/app/view/ReportController.js index 85cdb686..775394d0 100644 --- a/web/app/view/ReportController.js +++ b/web/app/view/ReportController.js @@ -227,7 +227,7 @@ Ext.define('Traccar.view.ReportController', { routeColumns: [{ text: Strings.reportDeviceName, dataIndex: 'deviceId', - renderer: Traccar.AttributeFormatter.getFormatter('deviceName') + renderer: Traccar.AttributeFormatter.getFormatter('deviceId') }, { text: Strings.positionValid, dataIndex: 'valid', @@ -267,7 +267,7 @@ Ext.define('Traccar.view.ReportController', { }, { text: Strings.reportDeviceName, dataIndex: 'deviceId', - renderer: Traccar.AttributeFormatter.getFormatter('deviceName') + renderer: Traccar.AttributeFormatter.getFormatter('deviceId') }, { text: Strings.sharedType, dataIndex: 'type', @@ -288,7 +288,7 @@ Ext.define('Traccar.view.ReportController', { summaryColumns: [{ text: Strings.reportDeviceName, dataIndex: 'deviceId', - renderer: Traccar.AttributeFormatter.getFormatter('deviceName') + renderer: Traccar.AttributeFormatter.getFormatter('deviceId') }, { text: Strings.sharedDistance, dataIndex: 'distance', @@ -310,7 +310,7 @@ Ext.define('Traccar.view.ReportController', { tripsColumns: [{ text: Strings.reportDeviceName, dataIndex: 'deviceId', - renderer: Traccar.AttributeFormatter.getFormatter('deviceName') + renderer: Traccar.AttributeFormatter.getFormatter('deviceId') }, { text: Strings.reportStartTime, dataIndex: 'startTime', |