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 e12f5cd commit 184b491Copy full SHA for 184b491
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>9.9.1-beta02</Version>
+ <Version>9.9.1-beta03</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/Components/Collapse/Collapse.razor
@@ -19,13 +19,16 @@
19
@item.HeaderTemplate
20
</div>
21
}
22
- else if(!string.IsNullOrEmpty(item.Icon))
23
- {
24
- <i class="@GetItemIconString(item)"></i>
25
- }
26
else
27
{
28
- <span>@item.Text</span>
+ if (!string.IsNullOrEmpty(item.Icon))
+ {
+ <i class="@GetItemIconString(item)"></i>
+ }
+ if (!string.IsNullOrEmpty(item.Text))
29
30
+ <span>@item.Text</span>
31
32
33
34
0 commit comments