Skip to content

Commit

Permalink
[wasm] Fix blazor startup measurements (dotnet#93696)
Browse files Browse the repository at this point in the history
dotnet#93548 introduced a typo, which caused the blazor
startup measurements to not load the page completely.

The snapshot version is still not loading right, that's probably because we don't use
https yet.
  • Loading branch information
radekdoulik authored Oct 19, 2023
1 parent 3c3f66e commit 04ede0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mono/sample/wasm/blazor-frame/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script type="module" src="./_framework/blazor.webassembly.js"></script>
<script src="./_framework/blazor.webassembly.js"></script>
<script type="module" src="./frame.js"></script>
</body>

Expand Down
2 changes: 1 addition & 1 deletion src/mono/sample/wasm/blazor-frame/wwwroot/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script type="module" src="./_framework/blazor.webassembly.js" autostart="false"></script>
<script src="./_framework/blazor.webassembly.js" autostart="false"></script>
<script type="module" src="./start.js"></script>
</body>

Expand Down

0 comments on commit 04ede0d

Please sign in to comment.