We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd7794 commit 9ea1b4fCopy full SHA for 9ea1b4f
.gitignore
@@ -10,6 +10,7 @@
10
*.sln.docstates
11
*.ncrunchproject
12
*.ncrunchsolution
13
+*.swp
14
15
# Project XML documentation
16
BlazorWebFormsComponents.xml
@@ -339,4 +340,4 @@ ASALocalRun/
339
340
# macOS
341
.DS_Store
342
.AppleDouble
-.LSOverride
343
+.LSOverride
src/BlazorWebFormsComponents/ListView.razor
@@ -33,7 +33,7 @@ else
33
foreach(var item in Items)
34
{
35
<CascadingValue Name="CurrentDataBoundItem" Value="item">
36
- @oddOrEvenTemplate(even)(item);
+ @oddOrEvenTemplate(even)(item)
37
@{ even = !even; }
38
</CascadingValue>
39
if (ItemSeparatorTemplate != null)
0 commit comments