diff --git a/.rubocop.yml b/.rubocop.yml index 2d8eb4077f3a1f707b366c731b1ec6cb9fd449a0..35f603c896fad284185c75222c404714ac285bda 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -785,7 +785,7 @@ Lint/AssignmentInCondition: # Align block ends correctly. Lint/BlockAlignment: - Enabled: false + Enabled: true # Default values in optional keyword arguments and optional ordinal arguments # should not refer back to the name of the argument. diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 551409e8855f0e2d86a75f450a064007894b0360..173bdbb8654fd0d82e82f5dba931fcb581c24a25 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -147,8 +147,8 @@ module IssuesHelper def emoji_author_list(notes, current_user) list = notes.map do |note| - note.author == current_user ? "me" : note.author.name - end + note.author == current_user ? "me" : note.author.name + end list.join(", ") end