fix issues with installer

This commit is contained in:
sbwalker
2024-02-16 11:13:31 -05:00
parent 829e004ee5
commit b0487798c2
4 changed files with 17 additions and 12 deletions

View File

@ -31,7 +31,7 @@
@inject IVisitorRepository VisitorRepository
@inject IJwtManager JwtManager
@if (_pageState != null)
@if (_initialized)
{
<!DOCTYPE html>
<html lang="@_language">
@ -93,6 +93,7 @@
}
@code {
private bool _initialized = false;
private string _renderMode = RenderModes.Interactive;
private string _runtime = Runtimes.Server;
private bool _prerender = true;
@ -266,6 +267,7 @@
_message = "Site Not Configured Correctly - No Matching Alias Exists For Host Name";
}
}
_initialized = true;
}
private void HandleDefaultAliasRedirect(Alias alias, string url)