I have a a field that contains HTML. When I display using {{field}} the html is not rendered. How do I display the field as rendered html? customForm.Description contains html:
<h4>Work Requests</h4>
<div ng-repeat="customForms in customFormGroups" class="row">
<div ng-repeat="customForm in customForms" class="col-sm-4">
<strong>{{customForm.Name}}</strong>
<p>{{customForm.Description}}</p>
<div class="form-group">
<a class="btn btn-primary" href="javascript:void(0);" ng-click="selectService(customForm)">Select</a>
</div>
</div>
</div>