We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc09b86 commit dd89e0bCopy full SHA for dd89e0b
frontend/src/components/Graph/GraphViewModal.tsx
@@ -398,6 +398,8 @@ const GraphViewModal: React.FunctionComponent<GraphViewModalProps> = ({
398
setRelationships(updatedRelations);
399
setNodes(updatedNodes);
400
};
401
+
402
+ // const isCommunity = allNodes.some(n=>n.labels.includes('__Community__'));
403
return (
404
<>
405
<Dialog
@@ -419,7 +421,7 @@ const GraphViewModal: React.FunctionComponent<GraphViewModalProps> = ({
419
421
graphType={graphType}
420
422
loading={loading}
423
handleChange={handleCheckboxChange}
- isgds={isGdsActive}
424
+ isgds={allNodes.some(n=>n.labels.includes('__Community__'))}
425
/>
426
)}
427
</Flex>
0 commit comments