Skip to content

Commit

Permalink
Pr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBleijendaal committed Jan 23, 2024
1 parent 1aa3aad commit 62f7172
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/RapidCMS.UI/Components/Editors/BasePicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ protected async Task SelectAllAsync()

protected async Task UnselectAllAsync()

Check warning on line 125 in src/RapidCMS.UI/Components/Editors/BasePicker.cs

View workflow job for this annotation

GitHub Actions / build

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.

Check warning on line 125 in src/RapidCMS.UI/Components/Editors/BasePicker.cs

View workflow job for this annotation

GitHub Actions / build

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.

Check warning on line 125 in src/RapidCMS.UI/Components/Editors/BasePicker.cs

View workflow job for this annotation

GitHub Actions / build

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.

Check warning on line 125 in src/RapidCMS.UI/Components/Editors/BasePicker.cs

View workflow job for this annotation

GitHub Actions / build

This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
{
if (RelationDataCollection == null)
{
return;
}

var items = RelationDataCollection.GetCurrentRelatedElementIds();
foreach (var item in items)
{
Expand Down

0 comments on commit 62f7172

Please sign in to comment.