page redirect support and added missing unique indexes on database tables

This commit is contained in:
Shaun Walker
2020-05-28 14:48:00 -04:00
parent 1b2c7772ef
commit 0f09df13b5
4 changed files with 75 additions and 0 deletions

View File

@ -13,6 +13,13 @@
{
var interop = new Interop(JsRuntime);
// handle page redirection
if (!string.IsNullOrEmpty(PageState.Page.Url))
{
NavigationManager.NavigateTo(PageState.Page.Url);
return;
}
// set page title
if (!string.IsNullOrEmpty(PageState.Page.Title))
{