diff --git a/src/browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent/DetailsPane.tsx b/src/browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent/DetailsPane.tsx index 2ce0099c8cb..58c366f53e1 100644 --- a/src/browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent/DetailsPane.tsx +++ b/src/browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent/DetailsPane.tsx @@ -33,7 +33,8 @@ export function DetailsPane({ vizItem, graphStyle, nodeInspectorWidth, - onGraphInteraction = () => undefined + onGraphInteraction = () => undefined, + showPropertiesTable = true }: DetailsPaneProps): JSX.Element { const [maxPropertiesCount, setMaxPropertiesCount] = useState( DETAILS_PANE_STEP_SIZE @@ -135,17 +136,19 @@ export function DetailsPane({ ) })} - - - + {showPropertiesTable && ( + + + + )} ) }