diff --git a/Components/PointsTableRTD8TMComponent.razor b/Components/PointsTableRTD8TMComponent.razor index 46b02b7..d2ce97e 100644 --- a/Components/PointsTableRTD8TMComponent.razor +++ b/Components/PointsTableRTD8TMComponent.razor @@ -9,7 +9,7 @@ -@if (_RTD8TMService.GetActualData() != null) +@if (TableData.Keys.Count > 0) { @@ -60,7 +60,7 @@ } - @if (TableData.Keys.Count > 1) + @if (LastDataTime != 0 && AfterHalfHour != 0) { @@ -100,6 +100,12 @@ else { TableData = _PointsService.GetPoints().RTD8TM; _PointsService.EventPointPage += UpdateView; + + if (TableData.Keys.Count > 1) + { + HalfHourTime(); + } + } private string TableBacgroundChanger() @@ -130,7 +136,10 @@ else { TableBackground = false; StateHasChanged(); - HalfHourTime(); + if (TableData.Keys.Count > 1) + { + HalfHourTime(); + } }); } } diff --git a/Pages/Start.razor b/Pages/Start.razor index 86a2e3e..9b60730 100644 --- a/Pages/Start.razor +++ b/Pages/Start.razor @@ -7,11 +7,11 @@ Welcome
-
TesDevice App V1.1
+
TesDevice App V1.1
Added Automatic points Saving, Calibration and Calculating RTDCard values change in last 3O minutes in saved points
-
TesDevice App V1.O
+
TesDevice App V1.O
Firt Fully function Build --> Reading RTD cards, RTD Graph, Points Saving and exporting as csv