Is there a way to integrate a fontawesome icon into ng-bind-html on ui-select based on a boolean value?
<span ng-bind-html="project.IsActive == false && <i class="fa fa-ban" aria-hidden="true"></i> | highlight: $select.search"></span>
The code provided is just an example and does not work as intended. Any suggestions on how to achieve this functionality?