Skip to content

Commit

Permalink
Change the action header column ID to modx-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
theboxer committed Oct 19, 2023
1 parent c46684c commit f19c50a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manager/assets/modext/widgets/core/modx.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ MODx.grid.Grid = function(config) {
}

config.columns.push({
id: config.columns.length
id: 'modx-actions'
,width: config.actionsColumnWidth || defaultActionsColumnWidth
,menuDisabled: true
,renderer: this.actionsColumnRenderer.bind(this)
Expand All @@ -130,7 +130,7 @@ MODx.grid.Grid = function(config) {
}

config.cm.columns.push({
id: config.cm.columns.length
id: 'modx-actions'
,width: config.actionsColumnWidth || defaultActionsColumnWidth
,menuDisabled: true
,renderer: this.actionsColumnRenderer.bind(this)
Expand Down

0 comments on commit f19c50a

Please sign in to comment.