File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/BootstrapBlazor/Components/Table Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,14 @@ public partial class Table<TItem>
2828 /// <summary>
2929 /// 获得/设置 树形数据集合
3030 /// </summary>
31- [ NotNull ]
3231 private List < TableTreeNode < TItem > > TreeRows { get ; } = new ( 100 ) ;
3332
3433 /// <summary>
3534 /// 获得/设置 是否正在加载子项 默认为 false
3635 /// </summary>
3736 private bool IsLoadChildren { get ; set ; }
3837
39- [ NotNull ]
38+ [ NotNull ]
4039 private string ? NotSetOnTreeExpandErrorMessage { get ; set ; }
4140
4241 /// <summary>
@@ -121,6 +120,7 @@ private async Task<IEnumerable<IExpandableNode<TItem>>> GetChildrenRowAsync(Tabl
121120 {
122121 throw new InvalidOperationException ( NotSetOnTreeExpandErrorMessage ) ;
123122 }
123+
124124 return await OnTreeExpand ( node . Value ) ;
125125 }
126- }
126+ }
You can’t perform that action at this time.
0 commit comments