fleetmap-reports 1.0.228 → 1.0.229

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetmap-reports",
3
- "version": "1.0.228",
3
+ "version": "1.0.229",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/kms-report.js CHANGED
@@ -240,14 +240,14 @@ function exportKmsReportToExcel(userData, reportData) {
240
240
  if(userData.groupByDay){
241
241
  headers.push(
242
242
  {label: translations.report.vehicle, value: 'name'},
243
- {label: translations.report.licenseplate, value: 'licenseplate'},
243
+ {label: translations.settings.vehicle_licenseplate, value: 'licenseplate'},
244
244
  {label: translations.report.group, value: 'group'},
245
245
  {label: translations.report.date, value: 'date'},
246
246
  {label: translations.report.distance, value: 'distance'})
247
247
  } else if(userData.byDriver) {
248
248
  headers.push(
249
249
  {label: translations.report.driver, value: 'name'},
250
- {label: translations.report.licenseplate, value: 'licenseplate'},
250
+ {label: translations.settings.vehicle_licenseplate, value: 'licenseplate'},
251
251
  {label: translations.report.group, value: 'group'},
252
252
  {label: translations.report.distance, value: 'distance'})
253
253
  }