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 d808607 commit 6690482Copy full SHA for 6690482
src/BootstrapBlazor.Server/Components/Components/Video.razor
@@ -3,12 +3,12 @@
3
4
<p><b>@Localizer["H1"]</b></p>
5
6
-@if (VideoUrl.Any())
+@if (VideoUrl.Count > 0)
7
{
8
foreach (var url in VideoUrl)
9
10
<div class="mb-3">
11
- <a class="fa-solid fa-video" href="@url" target="_blank"><span class="ms-2">@Localizer["L1"]</span></a>
+ <a href="@url" target="_blank"><i class="fa-solid fa-video"></i><span class="ms-2">@Localizer["L1"]</span></a>
12
</div>
13
}
14
0 commit comments