Sha256: 074ecafcde171b093941c2a602afad64a56950a298c07e02ecdfa4aa661805cd

Contents?: true

Size: 834 Bytes

Versions: 87

Compression:

Stored size: 834 Bytes

Contents

<%= field_wrapper **field_wrapper_args do %>
  <% if field.value_as_array? %>
    <div class="flex gap-4">
      <%= @form.fields_for @field.id do |coordinates_form| %>
        <%= coordinates_form.text_field @field.as_lat_long_field_id(:lat),
          value: @field.as_lat_long_value(:lat),
          class: classes("w-full"),
          placeholder: @field.as_lat_long_placeholder(:lat)
        %>
        <%= coordinates_form.text_field @field.as_lat_long_field_id(:long),
          value: @field.as_lat_long_value(:long),
          class: classes("w-full"),
          placeholder: @field.as_lat_long_placeholder(:long)
        %>
    <% end %>
    </div>
  <% else %>
    <%= @form.text_field @field.id,
      value: @field.value,
      class: classes("w-full"),
      placeholder: @field.placeholder
    %>
  <% end %>
<% end %>

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
avo-3.14.3 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.14.2 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.14.1 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.14.0 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.7 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.6 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.5 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.3 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.2 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.1 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.13.0 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.12.0 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.10 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.9 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.8 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.7 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.6 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.5 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.11.4 app/components/avo/fields/location_field/edit_component.html.erb