page redirect support and added missing unique indexes on database tables
This commit is contained in:
@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user