Skip to content

Commit efdde83

Browse files
committed
Merge branch 'main' into feat-checkbox-list
2 parents 612f1cd + 184b491 commit efdde83

File tree

8 files changed

+18
-15
lines changed

8 files changed

+18
-15
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>9.9.1-beta02</Version>
4+
<Version>9.9.1-beta03</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Collapse/Collapse.razor

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,16 @@
1919
@item.HeaderTemplate
2020
</div>
2121
}
22-
else if(!string.IsNullOrEmpty(item.Icon))
23-
{
24-
<i class="@GetItemIconString(item)"></i>
25-
}
2622
else
2723
{
28-
<span>@item.Text</span>
24+
if (!string.IsNullOrEmpty(item.Icon))
25+
{
26+
<i class="@GetItemIconString(item)"></i>
27+
}
28+
if (!string.IsNullOrEmpty(item.Text))
29+
{
30+
<span>@item.Text</span>
31+
}
2932
}
3033
</div>
3134
</div>

src/BootstrapBlazor/wwwroot/core/bootstrap/css/bootstrap.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BootstrapBlazor/wwwroot/core/bootstrap/css/bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BootstrapBlazor/wwwroot/core/bootstrap/css/bootstrap.rtl.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BootstrapBlazor/wwwroot/core/bootstrap/css/bootstrap.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BootstrapBlazor/wwwroot/core/bootstrap/js/bootstrap.bundle.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BootstrapBlazor/wwwroot/core/bootstrap/js/bootstrap.bundle.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)