Skip to content

Commit b540b53

Browse files
committed
Undo nullable
1 parent bc444a7 commit b540b53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Web/src/Forms/InputSelect.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Components.Forms
1111
/// <summary>
1212
/// A dropdown selection component.
1313
/// </summary>
14-
public class InputSelect<TValue> : InputBase<TValue> where TValue : notnull
14+
public class InputSelect<TValue> : InputBase<TValue>
1515
{
1616
private static readonly Type? _nullableUnderlyingType = Nullable.GetUnderlyingType(typeof(TValue));
1717

0 commit comments

Comments
 (0)