Closed
Description
Repro steps:
- Install .NET 8 RC1
- Create a Blazor Web App
- In MainLayout.razor add a
SectionOutlet
in the top row:
<div class="top-row px-4">
<SectionOutlet SectionName="top-row" />
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
</div>
- In Weather.razor add a
SectionContent
:
<SectionContent SectionName="top-row">
@forecasts?[0].Summary
</SectionContent>
- Run the app and browse to the weather page
Expected result: The weather forecast summary for the next day renders in the top row.
Actual result: The top row is empty.
Workaround: Disable streaming rendering on the weather page.