Skip to content

Commit

Permalink
chore(primeng) fix sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Aug 29, 2024
1 parent 683ff1b commit 299d19c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ export class DotContentTypesPortletComponent implements OnInit, OnDestroy {
actions.push({
menuItem: {
label: this.dotMessageService.get('contenttypes.content.copy'),
command: (item: DotCMSContentType) => this.showCloneContentTypeDialog(item)
command: async (item: DotCMSContentType) => {
await this.showCloneContentTypeDialog(item);
}
}
});
}
Expand Down

0 comments on commit 299d19c

Please sign in to comment.