Skip to content

Commit

Permalink
Capitalize animation config option names.
Browse files Browse the repository at this point in the history
  • Loading branch information
amclain committed Aug 3, 2020
1 parent e17f0aa commit 3733b42
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<div class="select-wrapper w-56">
<select name="<%= @id %>">
<%= for option <- @schema.options do %>
<option value="<%= option %>"><%= option %></option>
<option value="<%= option %>">
<%= option |> to_string() |> String.capitalize() %>
</option>
<% end %>
</select>
</div>
Expand Down

0 comments on commit 3733b42

Please sign in to comment.