Merge pull request #10511 from bjarnef/v9/feature/block-list-partial-async

Render Block List component partial async
This commit is contained in:
Bjarke Berg
2021-06-23 10:30:58 +02:00
committed by GitHub

View File

@@ -7,6 +7,7 @@
{
if (block?.ContentUdi == null) { continue; }
var data = block.Content;
@Html.Partial("BlockList/Components/" + data.ContentType.Alias, block)
@await Html.PartialAsync("BlockList/Components/" + data.ContentType.Alias, block)
}
</div>