bugfixing
This commit is contained in:
parent
0250613def
commit
347348c81c
2 changed files with 14 additions and 5 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
|
||||
|
||||
@if (_RTD8TMService.GetActualData() != null)
|
||||
@if (TableData.Keys.Count > 0)
|
||||
{
|
||||
<table class="table table-striped text-white">
|
||||
<thead>
|
||||
|
@ -60,7 +60,7 @@
|
|||
}
|
||||
</tbody>
|
||||
|
||||
@if (TableData.Keys.Count > 1)
|
||||
@if (LastDataTime != 0 && AfterHalfHour != 0)
|
||||
{
|
||||
<tfoot>
|
||||
<tr class="text-warning">
|
||||
|
@ -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();
|
||||
if (TableData.Keys.Count > 1)
|
||||
{
|
||||
HalfHourTime();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
<PageTitle>Welcome</PageTitle>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue