Apply Style/CollectionMethods rubocop rule

We were already using `map` and `reduce` almost everywhere.
This commit is contained in:
Javi Martín
2019-10-26 00:44:19 +02:00
parent e3bfcbcd25
commit eafb4018bf
27 changed files with 57 additions and 56 deletions

View File

@@ -60,7 +60,7 @@ module TranslatableFormHelper
end
def existing_translation_for(locale)
@object.translations.detect { |translation| translation.locale == locale }
@object.translations.find { |translation| translation.locale == locale }
end
def new_translation_for(locale)