Let input value be simple

This commit is contained in:
Montana
2018-09-18 11:24:24 -04:00
parent 32d04bfce4
commit bead1990c9
4 changed files with 15 additions and 19 deletions

View File

@@ -91,11 +91,11 @@
{% if choice[0] != "" %}
<input
name='env_{{ env.name }}_{{ project.id }}'
v-on:change="change"
name='env_{{ env.id }}'
v-on:change='change'
type='radio'
id="env_{{ env.id }}_{{ choice[0] }}"
value='{ "id": "{{ env.id }}", "role": "{{ choice[0] }}" }'
value='{{ choice[0] }}'
{% if role == choice[0] %}
checked='checked'
{% endif %}