Ensure otherText is set as it is typed

This commit is contained in:
Montana 2019-01-09 14:40:46 -05:00
parent 6efd304075
commit 5861c7bd42

View File

@ -39,7 +39,7 @@
<label for='{{ field.name }}-{{ loop.index0 }}'>{{ choice[1] }}</label> <label for='{{ field.name }}-{{ loop.index0 }}'>{{ choice[1] }}</label>
<div v-show="otherChecked"> <div v-show="otherChecked">
<input type='text' name='{{ other_input_field.name}}' id='{{ field.name }}-other' v-bind:value="otherText" aria-expanded='false' /> <input type='text' name='{{ other_input_field.name}}' id='{{ field.name }}-other' v-model:value="otherText" aria-expanded='false' />
</div> </div>
{% endif %} {% endif %}
</li> </li>