diff --git a/MP.MONO.UI/Components/MachStatsOverview.razor.cs b/MP.MONO.UI/Components/MachStatsOverview.razor.cs index 8a33575..b85ae97 100644 --- a/MP.MONO.UI/Components/MachStatsOverview.razor.cs +++ b/MP.MONO.UI/Components/MachStatsOverview.razor.cs @@ -44,7 +44,7 @@ namespace MP.MONO.UI.Components protected async Task ReloadData() { - ListRecords = await MMDataService.MachineDisplay(); + ListRecords = await MMDataService.MachineStats(); } #endregion Protected Methods diff --git a/MP.MONO.UI/Components/ParamOverview.razor b/MP.MONO.UI/Components/ParamOverview.razor index ad2284c..e8e27b4 100644 --- a/MP.MONO.UI/Components/ParamOverview.razor +++ b/MP.MONO.UI/Components/ParamOverview.razor @@ -4,7 +4,7 @@ @inject CurrentDataService MMDataService -@if (ListRecords != null && ListRecords.Count>0) +@if (ListRecords != null && ListRecords.Count > 0) {