Skip to content

Commit b97582a

Browse files
committed
doc: 更新文档
1 parent 5314607 commit b97582a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/BootstrapBlazor/Components/Select/Select.razor

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,14 @@
4444
<div class="dropdown-menu-body dropdown-virtual">
4545
@if (OnQueryAsync == null)
4646
{
47-
<Virtualize ItemSize="RowHeight" OverscanCount="OverscanCount" Items="@GetVirtualItems()" ChildContent="RenderRow" />
47+
<Virtualize ItemSize="RowHeight" OverscanCount="OverscanCount" Items="@GetVirtualItems()" ChildContent="RenderRow">
48+
</Virtualize>
4849
}
4950
else
5051
{
51-
<Virtualize ItemSize="RowHeight" OverscanCount="OverscanCount" ItemsProvider="LoadItems" Placeholder="RenderPlaceHolderRow" ItemContent="RenderRow" @ref="_virtualizeElement" />
52+
<Virtualize ItemSize="RowHeight" OverscanCount="OverscanCount" ItemsProvider="LoadItems"
53+
Placeholder="RenderPlaceHolderRow" ItemContent="RenderRow" @ref="_virtualizeElement">
54+
</Virtualize>
5255
}
5356
</div>
5457
}

0 commit comments

Comments
 (0)