Skip to content

Commit

Permalink
Fix Sonar Qube issue (#29789)
Browse files Browse the repository at this point in the history
### Proposed Changes
* Fix Sonar Qube issue

![Screenshot 2024-08-29 at 4 21
43 PM](https://github.com/user-attachments/assets/f5900041-db5c-4a00-b896-a75d56c4a907)

### Checklist
- [x] Tests
- [x] Translations
- [x] Security Implications Contemplated (add notes if applicable)
  • Loading branch information
nicobytes authored Aug 29, 2024
1 parent c912b38 commit a74ccb5
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: (item: DotCMSContentType) => {
this.showCloneContentTypeDialog(item);
}
}
});
}
Expand Down

0 comments on commit a74ccb5

Please sign in to comment.