Skip to content
Snippets Groups Projects
Verified Commit 007f0de1 authored by Dennis Collaris's avatar Dennis Collaris
Browse files

refactor: graph counts after rebase

parent b80ffff5
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,9 @@ export const QueryBuilderContextMenu = (props: { ...@@ -162,7 +162,9 @@ export const QueryBuilderContextMenu = (props: {
<MenuLabel label="Total node count" /> <MenuLabel label="Total node count" />
<MenuItem <MenuItem
disabled disabled
label={String(activeQuery?.graph?.nodeCounts ? activeQuery.graph.nodeCounts[props.node?.id + '_count'] : 'unknown')} label={String(
activeQuery?.graphCounts?.nodeCounts ? activeQuery.graphCounts.nodeCounts[props.node?.id + '_count'] : 'unknown',
)}
></MenuItem> ></MenuItem>
</SubMenuContent> </SubMenuContent>
</SubMenu> </SubMenu>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment