Skip to content

Commit faf8c2e

Browse files
authored
fix(Table): parameter IsTriggerByPagination not work (#7754)
* fix(Table): 修复 IsTriggerByPagination 未赋值问题 * chore: bump version 10.4.1-beta01
1 parent 25b6bb8 commit faf8c2e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
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>10.4.0</Version>
4+
<Version>10.4.1-beta01</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,7 @@ protected async Task QueryData(bool triggerByPagination = false)
553553
var queryOption = BuildQueryPageOptions();
554554
// Set whether it is the first query
555555
queryOption.IsFirstQuery = _firstQuery;
556+
queryOption.IsTriggerByPagination = triggerByPagination;
556557

557558
if (OnQueryAsync == null && typeof(TItem).IsAssignableTo(typeof(IDynamicObject)))
558559
{

0 commit comments

Comments
 (0)