| @@ -56,7 +56,7 @@ | |||||
| margin:10px 5px ; | margin:10px 5px ; | ||||
| } | } | ||||
| .tab_2_content { | .tab_2_content { | ||||
| min-height: 560px; | |||||
| min-height: 460px; | |||||
| margin-left: 10px; | margin-left: 10px; | ||||
| } | } | ||||
| .ac-grid { | .ac-grid { | ||||
| @@ -497,9 +497,11 @@ td, th { | |||||
| } | } | ||||
| let extras= jsonObj["extras"]; | let extras= jsonObj["extras"]; | ||||
| if(extras != null){ | if(extras != null){ | ||||
| html +="<p>" +extras["reason"] + "</p>"; | |||||
| html +="<p>" +extras["message"] + "</p>"; | |||||
| html +="<p>" +extras["action"] + "</p>"; | |||||
| for(var i=0; i < extras.length;i++){ | |||||
| html +="<p>" +extras[i]["reason"] + "</p>"; | |||||
| html +="<p>" +extras[i]["message"] + "</p>"; | |||||
| html +="<p>" +extras[i]["action"] + "</p>"; | |||||
| } | |||||
| } | } | ||||
| } | } | ||||
| document.getElementById("info_display").innerHTML=html; | document.getElementById("info_display").innerHTML=html; | ||||