Skip to content

Commit 089039e

Browse files
authored
Fix BaseInput For Swallowed Values (#244)
1 parent 2a8a8a3 commit 089039e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeBeam.MudBlazor.Extensions/Base/MudBaseInputExtended.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ protected virtual async Task SetValueAsync(T value, bool updateText = true, bool
384384
await ValueChanged.InvokeAsync(Value);
385385
if (updateText)
386386
await UpdateTextPropertyAsync(false);
387-
await BeginValidateAsync();
388387
FieldChanged(Value);
388+
await BeginValidateAsync();
389389
}
390390
}
391391

0 commit comments

Comments
 (0)