Skip to content
Snippets Groups Projects
Commit 380dc768 authored by Marco Malavolti's avatar Marco Malavolti
Browse files

Added 'IdP-Error' check_result status

parent 03a25e6f
No related branches found
No related tags found
No related merge requests found
...@@ -184,6 +184,11 @@ input[type=checkbox] { ...@@ -184,6 +184,11 @@ input[type=checkbox] {
margin-left: -200px; margin-left: -200px;
} }
.tooltip-idp-error {
width: 180px;
margin-left: -84px;
}
.tooltip-ssl-error { .tooltip-ssl-error {
width: 280px; width: 280px;
margin-left: -140px; margin-left: -140px;
......
...@@ -210,6 +210,9 @@ function getCheckResult(checkResult){ ...@@ -210,6 +210,9 @@ function getCheckResult(checkResult){
else if (checkResult == "SSL-Error"){ else if (checkResult == "SSL-Error"){
return '<div class="tooltip">SSL-Error <span class="tooltiptext tooltip-top tooltip-ssl-error">The IdP has a problem on its SSL certificate</span></div> '+infoCircle; return '<div class="tooltip">SSL-Error <span class="tooltiptext tooltip-top tooltip-ssl-error">The IdP has a problem on its SSL certificate</span></div> '+infoCircle;
} }
else if (checkResult == "IdP-Error"){
return '<div class="tooltip">IdP-Error <span class="tooltiptext tooltip-top tooltip-idp-error">The IdP reported an error</span></div> '+infoCircle
}
else if (checkResult == "DISABLED"){ else if (checkResult == "DISABLED"){
return '<div class="tooltip">Disabled <span class="tooltiptext tooltip-top tooltip-disabled">The check has been disabled for the IdP</span></div> '+infoCircle; return '<div class="tooltip">Disabled <span class="tooltiptext tooltip-top tooltip-disabled">The check has been disabled for the IdP</span></div> '+infoCircle;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment