mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 09:18:48 -03:30
Handle non-letter characters in survey description
This commit is contained in:
@@ -271,7 +271,7 @@
|
|||||||
</label>
|
</label>
|
||||||
|
|
||||||
<div class="survey_taker_description" ng-if="question.question_description">
|
<div class="survey_taker_description" ng-if="question.question_description">
|
||||||
<i ng-bind="question.question_description"></i>
|
<i ng-bind-html="question.question_description"></i>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="question.type === 'text'">
|
<div ng-if="question.type === 'text'">
|
||||||
<input type="text" id="survey_question_{{$index}}" ng-model="question.model" name="survey_question_{{$index}}" ng-minlength="question.minlength" ng-maxlength="question.maxlength" class="form-control Form-textInput" ng-required="question.required">
|
<input type="text" id="survey_question_{{$index}}" ng-model="question.model" name="survey_question_{{$index}}" ng-minlength="question.minlength" ng-maxlength="question.maxlength" class="form-control Form-textInput" ng-required="question.required">
|
||||||
|
|||||||
Reference in New Issue
Block a user