Fixed a small exception
This commit is contained in:
parent
2f5c0f6143
commit
7c14127b30
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class LegacyBridgeContextMenuProvider implements ContextMenuProvider {
|
|||
|
||||
spawn_context_menu(x: number, y: number, ...entries: MenuEntry[]) {
|
||||
const closeCallbacks = [];
|
||||
spawnContextMenu({ pageX: x, pageY: y }, entries.map(e => LegacyBridgeContextMenuProvider.mapEntry(e, closeCallbacks)).filter(e => !!e), () => closeCallbacks.forEach(callback => callback()));
|
||||
spawnContextMenu({ pageX: x, pageY: y }, entries.map(e => LegacyBridgeContextMenuProvider.mapEntry(e, closeCallbacks)).filter(e => !!e), () => closeCallbacks.filter(e => typeof e === "function").forEach(callback => callback()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue