Fix `Style/RedundantArgument` cop (#28321)

th-new
Matt Jankowski 2023-12-11 09:58:29 -05:00 committed by GitHub
parent 9dfa940636
commit 2c6369918c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ module ApplicationHelper
end
def fa_icon(icon, attributes = {})
class_names = attributes[:class]&.split(' ') || []
class_names = attributes[:class]&.split || []
class_names << 'fa'
class_names += icon.split.map { |cl| "fa-#{cl}" }