We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c78b608 commit a269771Copy full SHA for a269771
src/ui/components/Navigation/Base/NavigationBase.js
@@ -437,8 +437,16 @@ class NavigationBase extends React.Component {
437
case ENTRY_CONTEXT_MENU_ACTION.SHOW_RELATED_ENTITIES: {
438
return this.showRelatedEntities(entry);
439
}
440
- default:
441
- return false;
+ default: {
+ const {getAdditionalEntryContextMenuAction} = registry.common.functions.getAll();
442
+
443
+ getAdditionalEntryContextMenuAction(action, {
444
+ entry,
445
+ entryDialoguesRef: this.refDialogues,
446
+ });
447
448
+ break;
449
+ }
450
451
};
452
onEntryClick = (entry, event) => {
0 commit comments