Handle declined auth result
This commit is contained in:
parent
aa35ab223d
commit
8fe8581b78
4 changed files with 7 additions and 3 deletions
|
|
@ -22,6 +22,8 @@
|
|||
case "softfail":
|
||||
case "neutral":
|
||||
return "text-warning";
|
||||
case "declined":
|
||||
return "text-info";
|
||||
case "none":
|
||||
return noneIsFail ? "text-danger" : "text-muted";
|
||||
default:
|
||||
|
|
@ -40,6 +42,8 @@
|
|||
return "bi-exclamation-circle-fill";
|
||||
case "missing":
|
||||
return "bi-dash-circle-fill";
|
||||
case "declined":
|
||||
return "bi-dash-circle";
|
||||
case "none":
|
||||
return noneIsFail ? "bi-x-circle-fill" : "bi-question-circle";
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue