Skip to content

Commit 21d5599

Browse files
committed
Fix rubocop offence
1 parent db937da commit 21d5599

File tree

1 file changed

+1
-1
lines changed
  • admin/app/components/solidus_admin/products/show/categories/new

1 file changed

+1
-1
lines changed

admin/app/components/solidus_admin/products/show/categories/new/component.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def initialize(product:, taxon: nil)
1111
def parent_taxon_options
1212
@parent_taxon_options ||= Spree::Taxon.order(:lft).pluck(:name, :id, :depth).map do
1313
name, id, depth = _1
14-
["#{"    " * depth}#{name}", id, { data: { item_label: name } }]
14+
["#{'    ' * depth}#{name}", id, { data: { item_label: name } }]
1515
end
1616
end
1717
end

0 commit comments

Comments
 (0)