aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 96a7abf7..d52a6d2e 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 bf66c621..ee31569c 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 0f6552a7..8e022040 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 119e5805..be9ee298 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 92f569e7..e61ca905 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 c595ec72..06083349 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 aca98530..b1b01178 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 733c137f..dca3d5ca 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
}]
}
});