diff options
Diffstat (limited to 'components/Sidebar/Note.tsx')
-rw-r--r-- | components/Sidebar/Note.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/Sidebar/Note.tsx b/components/Sidebar/Note.tsx index ef2e2b2..e425559 100644 --- a/components/Sidebar/Note.tsx +++ b/components/Sidebar/Note.tsx @@ -16,6 +16,7 @@ export interface NoteProps { justification: number justificationList: string[] linksByNodeId: LinksByNodeId + openContextMenu: any } export const Note = (props: NoteProps) => { @@ -28,6 +29,7 @@ export const Note = (props: NoteProps) => { nodeByCite, setSidebarHighlightedNode, linksByNodeId, + openContextMenu, } = props return ( <Box @@ -50,6 +52,7 @@ export const Note = (props: NoteProps) => { nodeById, nodeByCite, setSidebarHighlightedNode, + openContextMenu, }} /> <Backlinks @@ -60,6 +63,7 @@ export const Note = (props: NoteProps) => { linksByNodeId, nodeByCite, setSidebarHighlightedNode, + openContextMenu, }} /> </Flex> |