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 c607323 commit 536d871Copy full SHA for 536d871
src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs
@@ -458,7 +458,7 @@ protected async Task QueryData(bool triggerByPagination = false)
458
{
459
var queryOption = BuildQueryPageOptions();
460
// 是否为分页查询
461
- queryOption.TriggerByPagination = triggerByPagination;
+ queryOption.IsTriggerByPagination = triggerByPagination;
462
// 设置是否为首次查询
463
queryOption.IsFirstQuery = _firstQuery;
464
src/BootstrapBlazor/Options/QueryPageOptions.cs
@@ -128,5 +128,5 @@ public class QueryPageOptions
128
/// <summary>
129
/// 获得 是否为刷新分页查询 默认 false
130
/// </summary>
131
- public bool TriggerByPagination { get; set; }
+ public bool IsTriggerByPagination { get; set; }
132
}
0 commit comments