Skip to content

Commit

Permalink
Fixed issue : no "No answser" in list with comment , dropdown
Browse files Browse the repository at this point in the history
Dev: label is not closed, html broken
  • Loading branch information
Shnoulle committed Oct 24, 2018
1 parent 35c2bd4 commit 01a09a8
Showing 1 changed file with 12 additions and 11 deletions.
Expand Up @@ -23,18 +23,19 @@
<div class="ls-answers row" role="group" aria-labelledby="ls-question-text-{{ basename }}">

<div class="answer-item dropdown-item col-sm-6 col-xs-12">
<!-- This need a label :/ -->
<select
class="select form-control"
name="{{ name }}"
id="{{ id }}"
{% if show_noanswer %}
<option class="noanswer-item" value="" SELECTED>
{{ gT('Please choose...') }}
</option>
{% endif %}
{# rows/option.php #}
{{ sOptions }}
class="select form-control"
name="{{ name }}"
id="{{ id }}"
>
{% if show_noanswer %}
<option class="noanswer-item" value="">
{{ gT('Please choose...') }}
</option>
{% endif %}
{# rows/option.php #}
{{ sOptions }}
</select>
<!-- Input copy for EM : default is radio and EM use id -->
<input type="hidden" name="java{{ name }}" id="java{{ name }}" value="{{ value }}" disabled />
Expand Down

0 comments on commit 01a09a8

Please sign in to comment.