Skip to content

Commit

Permalink
[Bug] Wrong titles for "batch edit selected" - missed param in functi…
Browse files Browse the repository at this point in the history
…on call
  • Loading branch information
vmalyk authored and dvesh3 committed Oct 31, 2023
1 parent 05ab9e8 commit b3e9595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/public/js/searchConfig/resultPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ pimcore.bundle.advancedObjectSearch.searchConfig.resultPanel = Class.create(pimc
for (var i = 0; i < selectedRows.length; i++) {
jobs.push(selectedRows[i].get("id"));
}
this.batchOpen(columnIndex, jobs, append, remove);
this.batchOpen(columnIndex, jobs, append, remove, onlySelected);

} else {

Expand Down Expand Up @@ -467,7 +467,7 @@ pimcore.bundle.advancedObjectSearch.searchConfig.resultPanel = Class.create(pimc
success: function (columnIndex, response) {
var rdata = Ext.decode(response.responseText);
if (rdata.success && rdata.jobs) {
this.batchOpen(columnIndex, rdata.jobs, append, remove);
this.batchOpen(columnIndex, rdata.jobs, append, remove, onlySelected);
}

}.bind(this, columnIndex)
Expand Down

0 comments on commit b3e9595

Please sign in to comment.