This commit is contained in:
Mirco Wittrien 2020-01-14 15:38:25 +01:00
parent 4fd93b49ed
commit 4dc5d09076
2 changed files with 2 additions and 2 deletions

View File

@ -9552,7 +9552,7 @@
if (BDFDB.ObjectUtils.is(menu)) {
let type = InternalBDFDB.getContextMenuType(menu.props && menu.props.type || menu.type && menu.type.displayName);
if (type && LibraryComponents.ContextMenus._NonRenderMenus.includes(type)) {
module = BDFDB.ModuleUtils.find(m => m == menu.type, false);
let module = BDFDB.ModuleUtils.find(m => m == menu.type, false);
if (module && module.exports && module.exports.default) {
if (!LibraryComponents.ContextMenus[type]) {
LibraryComponents.ContextMenus[type] = module.exports.default;

File diff suppressed because one or more lines are too long