Skip to content

Commit 0c305ac

Browse files
committed
Fix embedding dialog opening for navigation entry
1 parent 4319fe1 commit 0c305ac

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
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:
440+
default: {
441+
const {getAdditionalEntryContextMenuAction} = registry.common.functions.getAll();
442+
443+
getAdditionalEntryContextMenuAction(action, {
444+
entry,
445+
entryDialoguesRef: this.refDialogues,
446+
});
447+
441448
return false;
449+
}
442450
}
443451
};
444452
onEntryClick = (entry, event) => {

0 commit comments

Comments
 (0)