adds reload "true" boolean to the Save NavigateTo() method

This commit is contained in:
Cody 2024-02-17 12:12:57 -08:00 committed by GitHub
parent 766a190015
commit 114ebac21b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -630,11 +630,11 @@
await logger.LogInformation("Page Saved {Page}", _page);
if (!string.IsNullOrEmpty(PageState.ReturnUrl))
{
NavigationManager.NavigateTo(PageState.ReturnUrl);
NavigationManager.NavigateTo(PageState.ReturnUrl, true);
}
else
{
NavigationManager.NavigateTo(NavigateUrl());
NavigationManager.NavigateTo(NavigateUrl(), true);
}
}
else