Compare commits

..

No commits in common. "c8b60fa51852ad013e926f55cc11efe98157209d" and "d2cebc7c670f6f97d4c0acdf393cf28c6a7ed748" have entirely different histories.

View File

@ -90,7 +90,7 @@
{% endfor %} {% endfor %}
{# Set default name to the selected role ID or first role if none selected #} {# Set default name to the selected role ID or first role if none selected #}
<select id="cluster_{{ loop.index }}" <select id="cluster_{{ loop.index }}"
{% if selected_role_id == 'none' %} {% else %} name="roles[{{ selected_role_id }}]" {% endif %} name="roles[{% if selected_role_id != 'none' %}{{ selected_role_id }}{% else %}{{ cluster_roles[0].id }}{% endif %}]"
{% if allowed_to_edit == false %}disabled{% endif %} {% if allowed_to_edit == false %}disabled{% endif %}
onchange=" if (this.value === '') { this.removeAttribute('name'); } else { this.name = 'roles[' + this.options[this.selectedIndex].getAttribute('data-role-id') + ']'; }"> onchange=" if (this.value === '') { this.removeAttribute('name'); } else { this.name = 'roles[' + this.options[this.selectedIndex].getAttribute('data-role-id') + ']'; }">
<option value="" <option value=""