ready to test - E

This commit is contained in:
2023-11-09 11:41:33 -07:00
parent 1ab4316c22
commit 447f83f327
4 changed files with 18 additions and 13 deletions

View File

@ -382,15 +382,16 @@ function GetMinMax(profilePoints, index) {
function appendDiv() {
const div = document.createElement("div");
div.innerHTML = `
<table>
<table border = 1>
<thead>
<tr>
<th>ReactorNo</th>
<th>E10State</th>
<th>loadedRDS</th>
<th>State</th>
<th>RDS</th>
<th>Value</th>
<th>TemperatureOffsetPercentage</th>
<th>SubGroupIdFormated</th>
<th>Temperature Offset Percentage</th>
<th>Entered Date</th>
<th>Hours</th>
</tr>
</thead>
<tbody id ="EpiProTempVerification"></tbody>
@ -403,8 +404,8 @@ function appendDiv() {
type: "GET",
url: _apiUrl + '/InfinityQSV3/epi-pro-temp-verification',
success: function (r) {
if ((r.Results == null) || (r.Results.ToolType == null) || (r.Results.Metadata == null))
ShowErrorMessage("Invalid tool type: " + toolTypeID);
if (r == null)
ShowErrorMessage("Invalid data");
else {
tbody.innerHTML = r;
}
@ -593,7 +594,7 @@ function detailSelectionChangedRunInfo(evt, ui) {
}
}
else {
if (ui.row.index == 5)
if (ui.row.index == 4)
appendDiv();
else {
var ctx = document.getElementById('DataAttachmentCanvas');