Skip to content

Commit dd89e0b

Browse files
community check
1 parent bc09b86 commit dd89e0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/components/Graph/GraphViewModal.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,8 @@ const GraphViewModal: React.FunctionComponent<GraphViewModalProps> = ({
398398
setRelationships(updatedRelations);
399399
setNodes(updatedNodes);
400400
};
401+
402+
// const isCommunity = allNodes.some(n=>n.labels.includes('__Community__'));
401403
return (
402404
<>
403405
<Dialog
@@ -419,7 +421,7 @@ const GraphViewModal: React.FunctionComponent<GraphViewModalProps> = ({
419421
graphType={graphType}
420422
loading={loading}
421423
handleChange={handleCheckboxChange}
422-
isgds={isGdsActive}
424+
isgds={allNodes.some(n=>n.labels.includes('__Community__'))}
423425
/>
424426
)}
425427
</Flex>

0 commit comments

Comments
 (0)