Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/microsoft/fluentui-blazor in…
Browse files Browse the repository at this point in the history
…to dev
  • Loading branch information
vnbaaij committed Sep 6, 2024
2 parents e9ef914 + 406d3fc commit cd25fa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Core/Components/Base/FluentInputBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ protected async Task SetCurrentValueAsync(TValue? value)
}
if (FieldBound)
{
EditContext?.NotifyFieldChanged(FieldIdentifier);
// Thread Safety: Force `EditContext` to be re-associated with the Dispatcher
await InvokeAsync(() => EditContext?.NotifyFieldChanged(FieldIdentifier));
}
}

Expand Down

0 comments on commit cd25fa0

Please sign in to comment.