Skip to content

Commit

Permalink
Fix: removal-of-set-checkmarks-in-the-forbidden-dashboards-not-possible
Browse files Browse the repository at this point in the history
  • Loading branch information
robertSt7 committed Jan 10, 2024
1 parent f290243 commit 67fd711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/public/js/pimcore/perspective/perspective.js
Expand Up @@ -655,7 +655,7 @@ pimcore.bundle.perspectiveeditor.PerspectiveEditor = class {
checked: config[data[dataIndex].value] === 1,
listeners: {
change: function(elem, newValue, oldValue){
newValue ? config[elem.portletValue] = 1 : delete config[elem.name];
newValue ? config[elem.portletValue] = 1 : delete config[elem.portletValue];
this.setDirty(true);
}.bind(this)
}
Expand Down

0 comments on commit 67fd711

Please sign in to comment.