Fix disabled Reject action icon display code

This commit is contained in:
framer99 2018-08-09 16:31:37 -07:00 committed by Franco Fichtner
parent 2b7798190a
commit 1489973eac

View File

@ -490,7 +490,7 @@ $( document ).ready(function() {
} elseif ($filterent['type'] == "reject" && empty($filterent['disabled'])) {
$iconfn = "fa fa-times-circle text-danger";
} elseif ($filterent['type'] == "reject" && !empty($filterent['disabled'])) {
$iconfn = "f afa-times-circle text-muted";
$iconfn = "fa fa-times-circle text-muted";
} elseif (empty($filterent['disabled'])) {
$iconfn = "fa fa-play text-success";
} else {