Skip to content

Commit ad7593c

Browse files
authored
feat(Table): add IsPopover parameter on PageInfo (dotnetcore#6524)
* refactor: add IsPopover parameter * chore: bump version 9.9.1-beta01
1 parent a379095 commit ad7593c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
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.0</Version>
4+
<Version>9.9.1-beta01</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Table/Table.razor

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,8 @@
10561056
RenderFragment RenderPageInfo =>
10571057
@<div class="table-page-info">
10581058
<div class="me-2">@PageInfoLabelString</div>
1059-
<Select Items="@GetPageItemsSource()" Value="_pageItems" OnValueChanged="@OnPageItemsValueChanged"></Select>
1059+
<Select Items="@GetPageItemsSource()" IsPopover="true"
1060+
Value="_pageItems" OnValueChanged="@OnPageItemsValueChanged"></Select>
10601061
@if (PageInfoBodyTemplate != null)
10611062
{
10621063
@PageInfoBodyTemplate

0 commit comments

Comments
 (0)