fix issues with installer
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user