aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-02-27 16:35:22 +0500
committerAbyss777 <abyss@fox5.ru>2017-02-27 16:46:55 +0500
commitff9946c9365286e62224552a595c103119711dd7 (patch)
tree05ff1bb02d7afb4bfe8d1ddc1e2a5fd4bbfc1f2b /web
parent053962fb3c45297f3e5ecfa4e26e61e5c7ab7284 (diff)
downloadetbsa-traccar-web-ff9946c9365286e62224552a595c103119711dd7.tar.gz
etbsa-traccar-web-ff9946c9365286e62224552a595c103119711dd7.tar.bz2
etbsa-traccar-web-ff9946c9365286e62224552a595c103119711dd7.zip
Fix width of checkcolumns
Diffstat (limited to 'web')
-rw-r--r--web/app/view/DeviceGeofences.js8
-rw-r--r--web/app/view/GroupGeofences.js8
-rw-r--r--web/app/view/Notifications.js1
-rw-r--r--web/app/view/UserCalendars.js8
-rw-r--r--web/app/view/UserDevices.js12
-rw-r--r--web/app/view/UserGeofences.js8
-rw-r--r--web/app/view/UserGroups.js8
-rw-r--r--web/app/view/UserUsers.js8
8 files changed, 25 insertions, 36 deletions
diff --git a/web/app/view/DeviceGeofences.js b/web/app/view/DeviceGeofences.js
index 96a7abf..d52a6d2 100644
--- a/web/app/view/DeviceGeofences.js
+++ b/web/app/view/DeviceGeofences.js
@@ -37,13 +37,11 @@ Ext.define('Traccar.view.DeviceGeofences', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});
diff --git a/web/app/view/GroupGeofences.js b/web/app/view/GroupGeofences.js
index bf66c62..ee31569 100644
--- a/web/app/view/GroupGeofences.js
+++ b/web/app/view/GroupGeofences.js
@@ -37,13 +37,11 @@ Ext.define('Traccar.view.GroupGeofences', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});
diff --git a/web/app/view/Notifications.js b/web/app/view/Notifications.js
index 0f6552a..8e02204 100644
--- a/web/app/view/Notifications.js
+++ b/web/app/view/Notifications.js
@@ -42,6 +42,7 @@ Ext.define('Traccar.view.Notifications', {
items: [{
text: Strings.notificationType,
dataIndex: 'type',
+ flex: 2,
renderer: function (value) {
return Traccar.app.getEventString(value);
}
diff --git a/web/app/view/UserCalendars.js b/web/app/view/UserCalendars.js
index 119e580..be9ee29 100644
--- a/web/app/view/UserCalendars.js
+++ b/web/app/view/UserCalendars.js
@@ -38,13 +38,11 @@ Ext.define('Traccar.view.UserCalendars', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});
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
}]
}
});
diff --git a/web/app/view/UserGeofences.js b/web/app/view/UserGeofences.js
index c595ec7..0608334 100644
--- a/web/app/view/UserGeofences.js
+++ b/web/app/view/UserGeofences.js
@@ -37,13 +37,11 @@ Ext.define('Traccar.view.UserGeofences', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});
diff --git a/web/app/view/UserGroups.js b/web/app/view/UserGroups.js
index aca9853..b1b0117 100644
--- a/web/app/view/UserGroups.js
+++ b/web/app/view/UserGroups.js
@@ -37,13 +37,11 @@ Ext.define('Traccar.view.UserGroups', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});
diff --git a/web/app/view/UserUsers.js b/web/app/view/UserUsers.js
index 733c137..dca3d5c 100644
--- a/web/app/view/UserUsers.js
+++ b/web/app/view/UserUsers.js
@@ -38,13 +38,11 @@ Ext.define('Traccar.view.UserUsers', {
},
columns: {
- defaults: {
- flex: 1,
- minWidth: Traccar.Style.columnWidthNormal
- },
items: [{
text: Strings.sharedName,
- dataIndex: 'name'
+ dataIndex: 'name',
+ flex: 1,
+ minWidth: Traccar.Style.columnWidthNormal
}]
}
});