diff --git a/MP-TAB3/Components/LongStopList.razor.cs b/MP-TAB3/Components/LongStopList.razor.cs index f135d0e7..5a9c13a8 100644 --- a/MP-TAB3/Components/LongStopList.razor.cs +++ b/MP-TAB3/Components/LongStopList.razor.cs @@ -106,6 +106,11 @@ namespace MP_TAB3.Components answ = "bg-warning text-dark"; borderColor = "border-warning"; } + else if (sem == "sRo") + { + answ = "bg-danger text-light"; + borderColor = "border-danger"; + } return answ; } [Inject] diff --git a/MP.Data/Services/TabDataService.cs b/MP.Data/Services/TabDataService.cs index fc1d6702..491627f5 100644 --- a/MP.Data/Services/TabDataService.cs +++ b/MP.Data/Services/TabDataService.cs @@ -2368,6 +2368,7 @@ namespace MP.Data.Services { bool answ = false; answ = dbTabController.RicalcMse(idxMacchina, maxAgeSec); + await FlushOdlCache(); await FlushCache(Constants.redisMseKey); return answ; }