Skip to content

Commit

Permalink
Merge pull request #1885 from BlackbitNeueMedien/fix-delete-icons
Browse files Browse the repository at this point in the history
Fix delete icons in Pimcore backend
  • Loading branch information
dpfaffenbauer authored Mar 7, 2022
2 parents af9e371 + ab1b6ec commit a95ab8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ coreshop.cart.pricerules.item = Class.create(coreshop.rules.item, {
return record.data.used === true;
},
tooltip: t('remove'),
iconCls: 'pimcore_icon_deletes',
iconCls: 'pimcore_icon_delete',
handler: function (grid, rowIndex) {
var record = grid.getStore().getAt(rowIndex);
grid.getStore().removeAt(rowIndex);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ coreshop.object.objectMultihref = Class.create(pimcore.object.tags.objects, {
items: [
{
tooltip: t('remove'),
icon: 'pimcore_icon_delete',
iconCls: 'pimcore_icon_delete',
handler: function (grid, rowIndex) {
grid.getStore().removeAt(rowIndex);
}.bind(this)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ coreshop.taxrulegroup.item = Class.create(coreshop.resource.item, {
xtype: 'actioncolumn',
width: 40,
tooltip: t('delete'),
iconCls: 'pimcore_icon_deletes',
iconCls: 'pimcore_icon_delete',
handler: function (grid, rowIndex) {
grid.getStore().removeAt(rowIndex);
}.bind(this)
Expand Down

0 comments on commit a95ab8f

Please sign in to comment.