From 71ccdd9e6d28f4c1a2a14db7be04ce66d30a227b Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 11 Dec 2023 16:30:53 +0800 Subject: [PATCH] Version bump --- .../PropertiesPanelContent/DetailsPane.tsx | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) 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 && ( + + + + )} ) }