Improved AccountLayout
This commit is contained in:
parent
db1a4bba60
commit
888691ed9f
|
@ -2,12 +2,9 @@
|
|||
@layout Wave.Components.Layout.MainLayout
|
||||
@inject NavigationManager NavigationManager
|
||||
|
||||
@if (HttpContext is null)
|
||||
{
|
||||
<p>Loading...</p>
|
||||
}
|
||||
else
|
||||
{
|
||||
@if (HttpContext is null) {
|
||||
<span class="loading loading-spinner loading-lg"></span>
|
||||
} else {
|
||||
@Body
|
||||
}
|
||||
|
||||
|
@ -15,14 +12,13 @@ else
|
|||
[CascadingParameter]
|
||||
private HttpContext? HttpContext { get; set; }
|
||||
|
||||
protected override void OnParametersSet()
|
||||
{
|
||||
if (HttpContext is null)
|
||||
{
|
||||
protected override void OnParametersSet() {
|
||||
if (HttpContext is null) {
|
||||
// If this code runs, we're currently rendering in interactive mode, so there is no HttpContext.
|
||||
// The identity pages need to set cookies, so they require an HttpContext. To achieve this we
|
||||
// must transition back from interactive mode to a server-rendered page.
|
||||
NavigationManager.Refresh(forceReload: true);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
2
Wave/wwwroot/css/main.min.css
vendored
2
Wave/wwwroot/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue