From c74a53b301d56ae0eb472daf51c5b361b6600cd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ton=C4=87i=20Vatavuk?= Date: Thu, 2 Sep 2021 20:50:16 +0200 Subject: [PATCH] update fix https://github.com/oqtane/oqtane.framework/issues/1640 --- Oqtane.Client/App.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/App.razor b/Oqtane.Client/App.razor index cd46eda6..720098ad 100644 --- a/Oqtane.Client/App.razor +++ b/Oqtane.Client/App.razor @@ -39,7 +39,6 @@ if (_installation.Alias != null) { SiteState.Alias = _installation.Alias; - StateHasChanged(); } else { @@ -54,6 +53,7 @@ { var interop = new Interop(JSRuntime); SiteState.AntiForgeryToken = await interop.GetElementByName(Constants.RequestVerificationToken); + StateHasChanged(); } }