Skip to content

Commit d486071

Browse files
committed
Merge remote-tracking branch 'origin/1.7' into 2.x
# Conflicts: # public/js/pimcore/asset/helpers/grid.js
2 parents 2462649 + 88ba6fa commit d486071

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

public/js/pimcore/asset/helpers/grid.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,11 @@ pimcore.asset.helpers.grid = Class.create({
258258
text: t(field.label), sortable: true, dataIndex: field.key, editable: false,
259259
width: this.getColumnWidth(field, 210), locked: this.getColumnLock(field), filter: 'string', renderer: Ext.util.Format.htmlEncode
260260
});
261+
} else if (key === "id") {
262+
gridColumns.push({
263+
text: t(field.label), width: this.getColumnWidth(field, 130), locked: this.getColumnLock(field), sortable: true, filter: 'numeric',
264+
dataIndex: field.key
265+
});
261266
} else {
262267
gridColumns.push({
263268
text: t(field.label), width: this.getColumnWidth(field, 130), locked: this.getColumnLock(field), sortable: true,

public/js/pimcore/layout/portlets/modificationStatistic.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ pimcore.layout.portlets.modificationStatistic = Class.create(pimcore.layout.port
5151
height: 275,
5252
items: {
5353
xtype: 'cartesian',
54+
downloadServerUrl: '/disabled-server-url/',
5455
store: store,
5556
legend: {
5657
docked: 'right'

0 commit comments

Comments
 (0)