From b58c7386b3a9113b4da8c344a0f213a650f75574 Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Wed, 10 Mar 2021 17:00:49 +0100 Subject: [PATCH] Fixed issue Event Log strange behavior with the Paging control #1158 --- Oqtane.Client/Modules/Admin/Logs/Index.razor | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Oqtane.Client/Modules/Admin/Logs/Index.razor b/Oqtane.Client/Modules/Admin/Logs/Index.razor index 070e3fdf..64403d74 100644 --- a/Oqtane.Client/Modules/Admin/Logs/Index.razor +++ b/Oqtane.Client/Modules/Admin/Logs/Index.razor @@ -48,7 +48,7 @@ else @if (_logs.Any()) { - +
  @Localizer["Date"] @@ -141,6 +141,10 @@ else private async Task GetLogs() { _logs = await LogService.GetLogsAsync(PageState.Site.SiteId, ((_level == "-") ? string.Empty : _level), ((_function == "-") ? string.Empty : _function), int.Parse(_rows)); + await InvokeAsync(() => + { + base.StateHasChanged(); + }); } private string GetClass(string function)