sync: Allow Markdown in flag help

This commit is contained in:
nemunaire 2022-01-21 08:45:07 +01:00
parent 5a79343af8
commit 252ff33b83
3 changed files with 10 additions and 2 deletions

View file

@ -211,7 +211,7 @@ angular.module("FICApp")
</button>
</div>
</div>
<small class="form-text text-muted" ng-if="!$ctrl.key.found && $ctrl.key.help.length > 0" ng-bind="$ctrl.key.help"></small>
<small class="form-text text-muted" ng-if="!$ctrl.key.found && $ctrl.key.help.length > 0" ng-bind-html="$ctrl.key.help"></small>
<span class="glyphicon glyphicon-ok form-control-feedback text-success" aria-hidden="true" ng-if="$ctrl.key.found" title="Flag trouvé à {{ $ctrl.key.found | date:'mediumTime'}}"></span>
</div>
`