Skip to content

Commit

Permalink
Merge pull request #460 from gentics/hotfix-6.1.x-sup-17987
Browse files Browse the repository at this point in the history
Fix permission handling on templates
  • Loading branch information
deckdom authored Feb 11, 2025
2 parents 5e5d7d8 + d836aac commit 85babb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Administrator User Interface: Assignment of multiple templates to nodes or folders always failed with some
error messages (insufficient permissions). This has been fixed.
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ export class TemplateMasterComponent extends BaseTableMasterComponent<Template,
return [event.item];
}

return this.loader.getEntitiesByIds(this.selected)
.map(template => this.loader.mapToBusinessObject(template));
return this.loader.getEntitiesByIds(this.selected);
}

switch (event.actionId as Action) {
Expand Down

0 comments on commit 85babb3

Please sign in to comment.