Sha256: a13b268adb78d9b4cdab7728e8a571a74ea708d73991a1f3903d9805797dda09

Contents?: true

Size: 835 Bytes

Versions: 14

Compression:

Stored size: 835 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

14 entries across 14 versions & 1 rubygems

Version Path
avo-3.17.3 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.5.tw4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.4.tw4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.3.tw4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.2.tw4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.2 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.1.tw4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.1 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.17.0 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.16.6 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.16.5 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.16.4 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.16.3 app/components/avo/fields/location_field/edit_component.html.erb
avo-3.16.2 app/components/avo/fields/location_field/edit_component.html.erb