fix #2366 - populate new UrlParameters property

This commit is contained in:
Shaun Walker
2022-09-04 09:35:18 -04:00
parent 282a0b0c44
commit 51e2e2966f
3 changed files with 9 additions and 7 deletions

View File

@ -130,7 +130,7 @@
private string _properties = string.Empty;
private string _server = string.Empty;
public override string RouteTemplate => "/{id}";
public override string UrlParameterTemplate => "/{id}";
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Host;
protected override async Task OnInitializedAsync()

View File

@ -99,10 +99,10 @@ else
private List<Log> _logs;
private string _retention = "";
public override string RouteTemplate => "/{level}/{function}/{rows}/{page}";
public override string UrlParameterTemplate => "/{level}/{function}/{rows}/{page}";
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Host;
protected override async Task OnInitializedAsync()
protected override async Task OnParametersSetAsync()
{
try
{