diff --git a/MP.IOC/Components/Pages/Index.razor.cs b/MP.IOC/Components/Pages/Index.razor.cs index e5e74dec..e02e4513 100644 --- a/MP.IOC/Components/Pages/Index.razor.cs +++ b/MP.IOC/Components/Pages/Index.razor.cs @@ -44,7 +44,7 @@ namespace MP.IOC.Components.Pages DateTime adesso = DateTime.Now; var rawData = await StatsAggrService.GetFiltAsync(oggi.AddDays(-5), oggi); ListGlobalCall = rawData.OrderByDescending(x => x.Hour).ToList(); - ListParetoCall = await StatsDetService.GetParetoAsync(adesso.AddHours(-1), adesso, 5); + ListParetoCall = await StatsDetService.GetParetoAsync(adesso.AddHours(-1), adesso, 10); paretoWeek = await StatsAggrService.GetParetoStatsWeekAsync(); }