diff --git a/MP.SPEC/Components/ParamsFilter.razor.cs b/MP.SPEC/Components/ParamsFilter.razor.cs
index ed1ef126..101cb520 100644
--- a/MP.SPEC/Components/ParamsFilter.razor.cs
+++ b/MP.SPEC/Components/ParamsFilter.razor.cs
@@ -17,7 +17,11 @@ namespace MP.SPEC.Components
#region Protected Fields
- protected string lastUpdate = "-";
+ protected string lastUpdate
+ {
+ get => SelFilter.lastUpdate;
+ set => SelFilter.lastUpdate = value;
+ }
#endregion Protected Fields
diff --git a/MP.SPEC/Data/SelectFluxParams.cs b/MP.SPEC/Data/SelectFluxParams.cs
index 88e7b8fb..92559e14 100644
--- a/MP.SPEC/Data/SelectFluxParams.cs
+++ b/MP.SPEC/Data/SelectFluxParams.cs
@@ -18,7 +18,7 @@
public int MaxRecord { get; set; } = 100;
public int TempoAgg { get; set; } = 2000;
public int CurrPage { get; set; } = 1;
- //public string lastUpdate { get; set; } = "-";
+ public string lastUpdate { get; set; } = "-";
#endregion Public Properties
@@ -47,8 +47,8 @@
if (CurrPage != item.CurrPage)
return false;
- //if (lastUpdate != item.lastUpdate)
- // return false;
+ if (lastUpdate != item.lastUpdate)
+ return false;
return true;
}
diff --git a/MP.SPEC/MP.SPEC.csproj b/MP.SPEC/MP.SPEC.csproj
index 2f03663a..ec322873 100644
--- a/MP.SPEC/MP.SPEC.csproj
+++ b/MP.SPEC/MP.SPEC.csproj
@@ -5,7 +5,7 @@
enable
enable
MP.SPEC
- 6.15.2209.1614
+ 6.15.2209.1615
diff --git a/MP.SPEC/Pages/ODL.razor b/MP.SPEC/Pages/ODL.razor
index c99f8b4d..17c3eedf 100644
--- a/MP.SPEC/Pages/ODL.razor
+++ b/MP.SPEC/Pages/ODL.razor
@@ -2,223 +2,26 @@