1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 13:35:21 +02:00

Allow optional import fields (#865)

This commit is contained in:
Zach Gollwitzer 2024-06-11 18:46:44 -04:00 committed by GitHub
parent 6477c0f766
commit 8372e26864
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 5 deletions

View file

@ -14,7 +14,8 @@
<% @import.expected_fields.each do |field| %>
<%= mappings.select field.key,
options_for_select(@import.available_headers, @import.get_selected_header_for_field(field)),
label: field.label %>
label: field.label,
include_blank: field.optional? ? t(".optional") : false %>
<% end %>
<% end %>
</div>