diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-09-07 23:32:25 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 23:32:25 +1200 |
commit | 911863f770557f474138f2b113054d5bb294daf8 (patch) | |
tree | 28eea451b90f96be8b1355a0ea8c7c4e67485a12 /web/app/view/dialog/Server.js | |
parent | 019fccd1bd4a123fe93228462b33f14889b23394 (diff) | |
parent | e4acd577b0f4d83780d8101c3dc5ba177d649604 (diff) | |
download | trackermap-web-911863f770557f474138f2b113054d5bb294daf8.tar.gz trackermap-web-911863f770557f474138f2b113054d5bb294daf8.tar.bz2 trackermap-web-911863f770557f474138f2b113054d5bb294daf8.zip |
Merge pull request #574 from Abyss777/attributes_types
Save attributes with correct types
Diffstat (limited to 'web/app/view/dialog/Server.js')
-rw-r--r-- | web/app/view/dialog/Server.js | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/web/app/view/dialog/Server.js b/web/app/view/dialog/Server.js index c7b94576..b6343f3c 100644 --- a/web/app/view/dialog/Server.js +++ b/web/app/view/dialog/Server.js @@ -68,15 +68,13 @@ Ext.define('Traccar.view.dialog.Server', { inputValue: true, uncheckedValue: false, name: 'twelveHourFormat', - fieldLabel: Strings.settingsTwelveHourFormat, - allowBlank: false + fieldLabel: Strings.settingsTwelveHourFormat }, { xtype: 'checkboxfield', inputValue: true, uncheckedValue: false, name: 'forceSettings', - fieldLabel: Strings.serverForceSettings, - allowBlank: false + fieldLabel: Strings.serverForceSettings }, { xtype: 'combobox', name: 'coordinateFormat', @@ -96,22 +94,19 @@ Ext.define('Traccar.view.dialog.Server', { inputValue: true, uncheckedValue: false, name: 'registration', - fieldLabel: Strings.serverRegistration, - allowBlank: false + fieldLabel: Strings.serverRegistration }, { xtype: 'checkboxfield', inputValue: true, uncheckedValue: false, name: 'readonly', - fieldLabel: Strings.serverReadonly, - allowBlank: false + fieldLabel: Strings.serverReadonly }, { xtype: 'checkboxfield', inputValue: true, uncheckedValue: false, name: 'deviceReadonly', - fieldLabel: Strings.userDeviceReadonly, - allowBlank: false + fieldLabel: Strings.userDeviceReadonly }] }] }, |