Skip to content

Commit

Permalink
Fix #314
Browse files Browse the repository at this point in the history
  • Loading branch information
joeroe committed Nov 22, 2023
1 parent 03e7450 commit e69c090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/sites/_fields.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
</div>

<div class="row">
<div class="col"><%= f.number_field :lat, label: 'Latitude', append: '°N',
<div class="col"><%= f.number_field :lat, label: "Latitude", step: "any", append: "°N",
help: '<a href="https://www.fcc.gov/media/radio/dms-decimal" target="_blank">Convert DMS to decimal degrees</a>.'.html_safe %></div>
<div class="col"><%= f.number_field :lng, label: 'Longitude', append: '°E' %></div>
<div class="col"><%= f.number_field :lng, label: "Longitude", step: "any", append: "°E" %></div>
</div>

<%= f.collection_select :site_type_ids, SiteType.all, :id, :name,
Expand Down

0 comments on commit e69c090

Please sign in to comment.