Skip to content

Commit

Permalink
Fix mistakenly deletion of context.objectId (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmarkop authored Nov 22, 2024
1 parent 56dd075 commit f97192f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/pimcore/object/tags/abstractRelations.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ pimcore.object.tags.abstractRelations = Class.create(pimcore.object.tags.abstrac
},

getColumnWidthLocalStorageKey: function (column) {
let context = this.context;
let context = { ...this.context };
delete context.objectId;
context.column = column;

Expand Down

0 comments on commit f97192f

Please sign in to comment.