Skip to content

Commit

Permalink
Fix branch default select (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
babeuloula authored Aug 24, 2022
1 parent 199fb63 commit 2cb0d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/user/configuration.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<select class="form-control" name="branch_default_color" id="branch_default_color" required="required">
{% for color in colors %}
<option value="{{ color.value }}"
{% if configuration.getBranchDefaultColor() == color.value %}selected="selected"{% endif %}>
{% if configuration.getBranchDefaultColor().value == color.value %}selected="selected"{% endif %}>
{{ color.value }}
</option>
{% endfor %}
Expand Down

0 comments on commit 2cb0d89

Please sign in to comment.