Skip to content

Commit 1865983

Browse files
authored
Merge pull request #6578 from syncfusion-content/981234-TableIssueHotfix
981234: TableIssueHotfix
2 parents 19d53a2 + 0afc035 commit 1865983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

blazor/diagram/symbol-palette/customization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ The following code example demonstrates how to enable or disable the default too
704704

705705
private void AddFlowShape(NodeFlowShapes shape, string id, int index)
706706
{
707-
var node = new Node
707+
Node node = new Node
708708
{
709709
ID = id,
710710
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
728728

729729
private void AddBasicShape(NodeBasicShapes shapeType, string id, int index)
730730
{
731-
var node = new Node
731+
Node node = new Node
732732
{
733733
ID = id,
734734
Width = 60,
@@ -757,7 +757,7 @@ The following code example demonstrates how to enable or disable the default too
757757

758758
private void AddConnector(string id, ConnectorSegmentType type, DecoratorShape decoratorShape, int index)
759759
{
760-
var connector = new Connector
760+
Connector connector = new Connector
761761
{
762762
ID = id,
763763
Type = type,

0 commit comments

Comments
 (0)