aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/UserDevices.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-02-28 15:59:39 +1300
committerGitHub <noreply@github.com>2017-02-28 15:59:39 +1300
commitbd8fe8735db1ce889adba6027aa2fe9898817338 (patch)
tree05ff1bb02d7afb4bfe8d1ddc1e2a5fd4bbfc1f2b /web/app/view/UserDevices.js
parent053962fb3c45297f3e5ecfa4e26e61e5c7ab7284 (diff)
parentff9946c9365286e62224552a595c103119711dd7 (diff)
downloadetbsa-traccar-web-bd8fe8735db1ce889adba6027aa2fe9898817338.tar.gz
etbsa-traccar-web-bd8fe8735db1ce889adba6027aa2fe9898817338.tar.bz2
etbsa-traccar-web-bd8fe8735db1ce889adba6027aa2fe9898817338.zip
Merge pull request #417 from Abyss777/checkcolumn_width
Fix width of checkcolumns
Diffstat (limited to 'web/app/view/UserDevices.js')
-rw-r--r--web/app/view/UserDevices.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/web/app/view/UserDevices.js b/web/app/view/UserDevices.js
index 92f569e..e61ca90 100644
--- a/web/app/view/UserDevices.js
+++ b/web/app/view/UserDevices.js
@@ -37,16 +37,16 @@ Ext.define('Traccar.view.UserDevices', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}, {
text: Strings.deviceIdentifier,
- dataIndex: 'uniqueId'
+ dataIndex: 'uniqueId',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});