Skip to content

Commit 68ea96f

Browse files
committed
doc: 更新默认值
1 parent 306e9e2 commit 68ea96f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,11 @@ public partial class TreeView<TItem> : IModelEqualityComparer<TItem>
218218
public bool IsVirtualize { get; set; }
219219

220220
/// <summary>
221-
/// Gets or sets the row height for virtual scrolling. Default is 38.
221+
/// Gets or sets the row height for virtual scrolling. Default is 29f.
222222
/// </summary>
223-
/// <remarks>Effective when <see cref="ScrollMode"/> is set to Virtual.</remarks>
223+
/// <remarks>Effective when <see cref="IsVirtualize"/> is set to true.</remarks>
224224
[Parameter]
225-
public float RowHeight { get; set; } = 38f;
225+
public float RowHeight { get; set; } = 29f;
226226

227227
/// <summary>
228228
/// Gets or sets the overscan count for virtual scrolling. Default is 10.

0 commit comments

Comments
 (0)