diff options
Diffstat (limited to 'web/app/view')
-rw-r--r-- | web/app/view/ServerDialog.js | 8 | ||||
-rw-r--r-- | web/app/view/UserDialog.js | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/web/app/view/ServerDialog.js b/web/app/view/ServerDialog.js index 14af1833..c16a75db 100644 --- a/web/app/view/ServerDialog.js +++ b/web/app/view/ServerDialog.js @@ -96,6 +96,14 @@ Ext.define('Traccar.view.ServerDialog', { name: 'forceSettings', fieldLabel: Strings.serverForceSettings, allowBlank: false + }, { + xtype: 'combobox', + name: 'coordinateFormat', + fieldLabel: Strings.settingsCoordinateFormat, + store: 'CoordinateFormats', + displayField: 'name', + valueField: 'key', + editable: false }] }, diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index f717da72..196032f2 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -102,6 +102,14 @@ Ext.define('Traccar.view.UserDialog', { name: 'twelveHourFormat', fieldLabel: Strings.settingsTwelveHourFormat, allowBlank: false + }, { + xtype: 'combobox', + name: 'coordinateFormat', + fieldLabel: Strings.settingsCoordinateFormat, + store: 'CoordinateFormats', + displayField: 'name', + valueField: 'key', + editable: false }] }, |