Skip to content

Commit 536d871

Browse files
committed
refactor(): 重命名参数
1 parent c607323 commit 536d871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ protected async Task QueryData(bool triggerByPagination = false)
458458
{
459459
var queryOption = BuildQueryPageOptions();
460460
// 是否为分页查询
461-
queryOption.TriggerByPagination = triggerByPagination;
461+
queryOption.IsTriggerByPagination = triggerByPagination;
462462
// 设置是否为首次查询
463463
queryOption.IsFirstQuery = _firstQuery;
464464

src/BootstrapBlazor/Options/QueryPageOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ public class QueryPageOptions
128128
/// <summary>
129129
/// 获得 是否为刷新分页查询 默认 false
130130
/// </summary>
131-
public bool TriggerByPagination { get; set; }
131+
public bool IsTriggerByPagination { get; set; }
132132
}

0 commit comments

Comments
 (0)