Skip to content

Commit 1a6166a

Browse files
Merge pull request #7049 from syncfusion-content/985454-UG
Updated Blazor common Getting Started code snippet for Server, WASM and Web App
2 parents f9cc925 + 09a1471 commit 1a6166a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

blazor/getting-started/blazor-server-side-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ N> If an Interactivity Location is set to `Global` and the **Render Mode** is se
227227
{
228228
OrderID = 1000 + x,
229229
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
230-
Freight = 2.1 * x,
230+
Freight = 2 * x,
231231
OrderDate = DateTime.Now.AddDays(-x),
232232
}).ToList();
233233
}

blazor/getting-started/blazor-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ N> If an **Interactivity Location** is set to `Global` and the **Render Mode** i
293293
{
294294
OrderID = 1000 + x,
295295
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
296-
Freight = 2.1 * x,
296+
Freight = 2 * x,
297297
OrderDate = DateTime.Now.AddDays(-x),
298298
}).ToList();
299299
}

blazor/getting-started/blazor-webassembly-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Add the Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor DataGrid compone
217217
{
218218
OrderID = 1000 + x,
219219
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
220-
Freight = 2.1 * x,
220+
Freight = 2 * x,
221221
OrderDate = DateTime.Now.AddDays(-x),
222222
}).ToList();
223223
}
69.9 KB
Loading

0 commit comments

Comments
 (0)