Fix import data field type (#24874)

lolsob-rspec
mogaminsk 2023-05-06 01:10:10 +09:00 committed by GitHub
parent 2a651be35a
commit 3ea6c679cf
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
.fields-row
.fields-group.fields-row__column.fields-row__column-6
= f.input :data, wrapper: :with_block_label, hint: t('simple_form.hints.imports.data')
= f.input :data, as: :file, wrapper: :with_block_label, hint: t('simple_form.hints.imports.data')
.fields-group.fields-row__column.fields-row__column-6
= f.input :mode, as: :radio_buttons, collection: Import::MODES, label_method: ->(mode) { safe_join([I18n.t("imports.modes.#{mode}"), content_tag(:span, I18n.t("imports.modes.#{mode}_long"), class: 'hint')]) }, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li'