1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Handle non-letter characters in survey description

This commit is contained in:
Michael Abashian 2017-07-18 15:07:31 -04:00
parent d4016766bf
commit 1ca5b4dec9

View File

@ -271,7 +271,7 @@
</label>
<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 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">