diff --git a/src/Core/Components/List/ListComponentBase.razor.cs b/src/Core/Components/List/ListComponentBase.razor.cs index 0ce4bbaf8..8e5a300b4 100644 --- a/src/Core/Components/List/ListComponentBase.razor.cs +++ b/src/Core/Components/List/ListComponentBase.razor.cs @@ -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; }