Fix rubocop nits

This commit is contained in:
Andreas Nedbal 2024-01-24 23:05:09 +01:00 committed by Andreas Nedbal
parent fa81ef2ba6
commit baa1f3f319
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class ReportFilter
Report.joins(:target_user)
.where(users: { screen_name: value })
when "type"
Report.where('LOWER(type) = ?', "reports::#{value}")
Report.where("LOWER(type) = ?", "reports::#{value}")
end
end
end