From 0afc035686e932b98c2619ddfdf148ff7dce4b7c Mon Sep 17 00:00:00 2001 From: ParameshwaranSF4845 Date: Thu, 11 Sep 2025 17:58:20 +0530 Subject: [PATCH] 981234: TableIssueHotfix --- blazor/diagram/symbol-palette/customization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blazor/diagram/symbol-palette/customization.md b/blazor/diagram/symbol-palette/customization.md index 2615117640..9a72833da8 100644 --- a/blazor/diagram/symbol-palette/customization.md +++ b/blazor/diagram/symbol-palette/customization.md @@ -704,7 +704,7 @@ The following code example demonstrates how to enable or disable the default too private void AddFlowShape(NodeFlowShapes shape, string id, int index) { - var node = new Node + Node node = new Node { ID = id, Shape = new FlowShape { Type = NodeShapes.Flow, Shape = shape }, @@ -728,7 +728,7 @@ The following code example demonstrates how to enable or disable the default too private void AddBasicShape(NodeBasicShapes shapeType, string id, int index) { - var node = new Node + Node node = new Node { ID = id, Width = 60, @@ -757,7 +757,7 @@ The following code example demonstrates how to enable or disable the default too private void AddConnector(string id, ConnectorSegmentType type, DecoratorShape decoratorShape, int index) { - var connector = new Connector + Connector connector = new Connector { ID = id, Type = type,