Skip to content

Commit

Permalink
fix stupid typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasfranck committed Oct 17, 2023
1 parent afcd471 commit ee999f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/form/cols/select_repeat.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="form-values">
{{range $i, $v := .Values}}
<div class="d-flex mb-3 form-value">
<select class="custom-select form-control" name="{{$.Name}}" id="{{$.Name}}-{{$i}}" data-tmpl-id="{{.Name}}-{i}">
<select class="custom-select form-control" name="{{$.Name}}" id="{{$.Name}}-{{$i}}" data-tmpl-id="{{$.Name}}-{i}">
{{if $.EmptyOption}}<option></option>{{end}}
{{range $.Options}}
<option value="{{.Value}}"{{if eq .Value $v}} selected{{end}}>{{.Label}}</option>
Expand Down

0 comments on commit ee999f8

Please sign in to comment.