Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/BootstrapBlazor/Components/Search/Search.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@
NoDataTip ??= Localizer[nameof(NoDataTip)];
_filterItems ??= [];

// 这里应该获得初始值
_displayText = GetDisplayText(Value);

Check warning on line 204 in src/BootstrapBlazor/Components/Search/Search.razor.cs

View workflow job for this annotation

GitHub Actions / run test

Possible null reference assignment.

if (Debounce == 0)
{
Debounce = 200;
Expand Down
Loading