Fix haml lint Rubocop Style/RedundantStringCoercion cop (#25975)

This commit is contained in:
Matt Jankowski 2023-07-17 08:08:56 -04:00 committed by GitHub
parent 2a9063e36a
commit 5096deb818
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -1,13 +1,13 @@
- content_for :page_title do
= t("imports.titles.#{@bulk_import.type.to_s}")
= t("imports.titles.#{@bulk_import.type}")
- if @bulk_import.likely_mismatched?
.flash-message.warning= t("imports.mismatched_types_warning")
- if @bulk_import.overwrite?
%p.hint= t("imports.overwrite_preambles.#{@bulk_import.type.to_s}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
%p.hint= t("imports.overwrite_preambles.#{@bulk_import.type}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
- else
%p.hint= t("imports.preambles.#{@bulk_import.type.to_s}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
%p.hint= t("imports.preambles.#{@bulk_import.type}_html", filename: @bulk_import.original_filename, total_items: @bulk_import.total_items)
.simple_form
.actions