Skip to content

Commit

Permalink
Merge pull request #110 from eosnetworkfoundation/error_message
Browse files Browse the repository at this point in the history
proper header for error message
  • Loading branch information
ericpassmore authored Sep 2, 2024
2 parents c785b9c + 8d3c5cf commit d9db195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webcontent/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h3 id="detail-config-heading">Configuration</h3>
jobDetailList += '<li><strong>Status<strong>: <lable class="badge '
+getBadgeType(jobObj.status)+'">'+jobObj.status+'</lable><li>'
if (jobObj.status === "ERROR" && jobObj.error_message !== "NA") {
jobDetailList += '<li><strong>Current Block<strong>: <p>'+jobObj.error_message+'</p><li>'
jobDetailList += '<li><strong>Error Message<strong>: <p>'+jobObj.error_message+'</p><li>'
}
jobDetailList += '<li><strong>Actual Integrity Hash<strong>: <p>'+jobObj.actual_integrity_hash+'</p><li>'
jobDetailList += '<li><strong>Expected Integrity Hash<strong>: <p>'+jobObj.expected_integrity_hash+'</p><li>'
Expand Down

0 comments on commit d9db195

Please sign in to comment.