Skip to content

Commit

Permalink
Fix #3111 (#3119)
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij authored Jan 2, 2025
1 parent 9322bb7 commit 9ff5aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/List/ListComponentBase.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ protected override void OnParametersSet()
}
}

if (Value is not null && (InternalValue is null || InternalValue != Value))
if (!string.IsNullOrWhiteSpace(Value) && (InternalValue is null || InternalValue != Value))
{
InternalValue = Value;
}
Expand Down

0 comments on commit 9ff5aef

Please sign in to comment.