bugfixing

master
Jan Beníček 2024-01-13 08:00:42 +01:00
parent 0250613def
commit 347348c81c
2 changed files with 14 additions and 5 deletions

View File

@ -9,7 +9,7 @@
@if (_RTD8TMService.GetActualData() != null) @if (TableData.Keys.Count > 0)
{ {
<table class="table table-striped text-white"> <table class="table table-striped text-white">
<thead> <thead>
@ -60,7 +60,7 @@
} }
</tbody> </tbody>
@if (TableData.Keys.Count > 1) @if (LastDataTime != 0 && AfterHalfHour != 0)
{ {
<tfoot> <tfoot>
<tr class="text-warning"> <tr class="text-warning">
@ -100,6 +100,12 @@ else
{ {
TableData = _PointsService.GetPoints().RTD8TM; TableData = _PointsService.GetPoints().RTD8TM;
_PointsService.EventPointPage += UpdateView; _PointsService.EventPointPage += UpdateView;
if (TableData.Keys.Count > 1)
{
HalfHourTime();
}
} }
private string TableBacgroundChanger() private string TableBacgroundChanger()
@ -130,7 +136,10 @@ else
{ {
TableBackground = false; TableBackground = false;
StateHasChanged(); StateHasChanged();
if (TableData.Keys.Count > 1)
{
HalfHourTime(); HalfHourTime();
}
}); });
} }
} }

View File

@ -7,11 +7,11 @@
<PageTitle>Welcome</PageTitle> <PageTitle>Welcome</PageTitle>
<div class="text-center row"> <div class="text-center row">
<div class="h6 col"><strong>TesDevice App V1.1</strong></div> <div class="h6 col-3"><strong>TesDevice App V1.1</strong></div>
<div class="col">Added Automatic points Saving, Calibration and Calculating RTDCard values change in last 3O minutes in saved points</div> <div class="col">Added Automatic points Saving, Calibration and Calculating RTDCard values change in last 3O minutes in saved points</div>
</div> </div>
<div class="text-center row"> <div class="text-center row">
<div class="h6 col">TesDevice App V1.O</div> <div class="h6 col-3">TesDevice App V1.O</div>
<div class="col">Firt Fully function Build --> Reading RTD cards, RTD Graph, Points Saving and exporting as csv</div> <div class="col">Firt Fully function Build --> Reading RTD cards, RTD Graph, Points Saving and exporting as csv</div>
</div> </div>