Skip to content

Commit a269771

Browse files
committed
Fix embedding dialog opening for navigation entry
1 parent c78b608 commit a269771

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/ui/components/Navigation/Base/NavigationBase.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,16 @@ class NavigationBase extends React.Component {
437437
case ENTRY_CONTEXT_MENU_ACTION.SHOW_RELATED_ENTITIES: {
438438
return this.showRelatedEntities(entry);
439439
}
440-
default:
441-
return false;
440+
default: {
441+
const {getAdditionalEntryContextMenuAction} = registry.common.functions.getAll();
442+
443+
getAdditionalEntryContextMenuAction(action, {
444+
entry,
445+
entryDialoguesRef: this.refDialogues,
446+
});
447+
448+
break;
449+
}
442450
}
443451
};
444452
onEntryClick = (entry, event) => {

0 commit comments

Comments
 (0)