Skip to content

Commit

Permalink
Fix component resolve.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Nov 22, 2021
1 parent 66c3f3a commit e65072e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ public static async Task<ResolvedComponents> GetComponentsAsync(this IAppProvide

async Task ResolveWithIdsAsync(IField field, ReadonlyList<DomainId>? schemaIds)
{
if (schemaIds == null)
{
return;
}

foreach (var schemaId in schemaIds)
{
if (schemaId == schema.Id)
Expand Down

0 comments on commit e65072e

Please sign in to comment.