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,14 +28,15 @@ public partial class Table<TItem>
2828 /// <summary>
2929 /// 获得/设置 树形数据集合
3030 /// </summary>
31+ [ NotNull ]
3132 private List < TableTreeNode < TItem > > TreeRows { get ; } = new ( 100 ) ;
3233
3334 /// <summary>
3435 /// 获得/设置 是否正在加载子项 默认为 false
3536 /// </summary>
3637 private bool IsLoadChildren { get ; set ; }
3738
38- [ NotNull ]
39+ [ NotNull ]
3940 private string ? NotSetOnTreeExpandErrorMessage { get ; set ; }
4041
4142 /// <summary>
@@ -120,7 +121,6 @@ private async Task<IEnumerable<IExpandableNode<TItem>>> GetChildrenRowAsync(Tabl
120121 {
121122 throw new InvalidOperationException ( NotSetOnTreeExpandErrorMessage ) ;
122123 }
123-
124124 return await OnTreeExpand ( node . Value ) ;
125125 }
126- }
126+ }
You can’t perform that action at this time.
0 commit comments