diff options
Diffstat (limited to 'web/app/store/GroupAttributes.js')
-rw-r--r-- | web/app/store/GroupAttributes.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/web/app/store/GroupAttributes.js b/web/app/store/GroupAttributes.js index 95507243..2a2765f5 100644 --- a/web/app/store/GroupAttributes.js +++ b/web/app/store/GroupAttributes.js @@ -23,25 +23,25 @@ Ext.define('Traccar.store.GroupAttributes', { data: [{ key: 'speedLimit', name: Strings.attributeSpeedLimit, - type: 'number', - convert: 'speed' + valueType: 'number', + dataType: 'speed' }, { key: 'report.ignoreOdometer', name: Strings.attributeReportIgnoreOdometer, - type: 'boolean' + valueType: 'boolean' }, { key: 'maintenance.start', name: Strings.attributeMaintenanceStart, - type: 'number', - convert: 'distance' + valueType: 'number', + dataType: 'distance' }, { key: 'maintenance.interval', name: Strings.attributeMaintenanceInterval, - type: 'number', - convert: 'distance' + valueType: 'number', + dataType: 'distance' }, { key: 'processing.copyAttributes', name: Strings.attributeProcessingCopyAttributes, - type: 'string' + valueType: 'string' }] }); |