aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/edit/Devices.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-03-29 20:20:21 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2017-03-29 20:20:21 +1300
commit86f54b5db9269d0ba010a22e281b379bdae3751f (patch)
treeae31c6871fd912d08584be9f79408767191db694 /web/app/view/edit/Devices.js
parentde980d0d3b4b87bc21fa037bafd90f6f72f46082 (diff)
downloadetbsa-traccar-web-86f54b5db9269d0ba010a22e281b379bdae3751f.tar.gz
etbsa-traccar-web-86f54b5db9269d0ba010a22e281b379bdae3751f.tar.bz2
etbsa-traccar-web-86f54b5db9269d0ba010a22e281b379bdae3751f.zip
Minor adjustment to the devices table
Diffstat (limited to 'web/app/view/edit/Devices.js')
-rw-r--r--web/app/view/edit/Devices.js17
1 files changed, 5 insertions, 12 deletions
diff --git a/web/app/view/edit/Devices.js b/web/app/view/edit/Devices.js
index d4970eb..9393b43 100644
--- a/web/app/view/edit/Devices.js
+++ b/web/app/view/edit/Devices.js
@@ -21,6 +21,7 @@ Ext.define('Traccar.view.edit.Devices', {
requires: [
'Ext.grid.filters.Filters',
+ 'Traccar.AttributeFormatter',
'Traccar.view.edit.DevicesController'
],
@@ -129,18 +130,6 @@ Ext.define('Traccar.view.edit.Devices', {
}
}
}, {
- text: Strings.deviceLastUpdate,
- dataIndex: 'lastUpdate',
- renderer: function (value) {
- if (value) {
- if (Traccar.app.getPreference('twelveHourFormat', false)) {
- return Ext.Date.format(value, Traccar.Style.dateTimeFormat12);
- } else {
- return Ext.Date.format(value, Traccar.Style.dateTimeFormat24);
- }
- }
- }
- }, {
text: Strings.deviceStatus,
dataIndex: 'status',
flex: 1,
@@ -159,6 +148,10 @@ Ext.define('Traccar.view.edit.Devices', {
}
}
}
+ }, {
+ text: Strings.deviceLastUpdate,
+ dataIndex: 'lastUpdate',
+ renderer: Traccar.AttributeFormatter.getFormatter('lastUpdate')
}]
}
});