NavigateUrl fix to deal with scenario where alias has a value and path is ""

This commit is contained in:
Shaun Walker
2020-04-08 11:43:42 -04:00
parent c29195b417
commit 1edc34dca0
5 changed files with 9 additions and 8 deletions

View File

@ -26,9 +26,8 @@
}
@code {
public override SecurityAccessLevel SecurityAccessLevel { get { return SecurityAccessLevel.Edit; } }
public override string Actions { get { return "Add,Edit"; } }
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Edit;
public override string Actions => "Add,Edit";
int _id;
string _name;

View File

@ -14,7 +14,7 @@
</table>
@code {
public override string Title { get { return "[Module] Settings"; } }
public override string Title => "[Module] Settings";
string _value;