From c54f491bdd96e4f7908fe91b4c31376aed86128b Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 10 Apr 2026 17:54:06 +0200 Subject: [PATCH] Fix pareto top orario --- MP.IOC/Components/Pages/Index.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }