NavigateUrl fix to deal with scenario where alias has a value and path is ""
This commit is contained in:
@ -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;
|
||||
|
@ -14,7 +14,7 @@
|
||||
</table>
|
||||
|
||||
@code {
|
||||
public override string Title { get { return "[Module] Settings"; } }
|
||||
public override string Title => "[Module] Settings";
|
||||
|
||||
string _value;
|
||||
|
||||
|
Reference in New Issue
Block a user