mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Use of rubocop compliant unescaping methods in application_helper.rb
This commit is contained in:
parent
0d01ed08b0
commit
1223fef87c
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ module ApplicationHelper
|
|||
end
|
||||
|
||||
def speaker_links(event)
|
||||
event.speakers.map{ |speaker| link_to speaker.name, admin_user_path(speaker) }.join(', ').html_safe
|
||||
safe_join(event.speakers.map{ |speaker| link_to speaker.name, admin_user_path(speaker) }, ',')
|
||||
end
|
||||
|
||||
def speaker_selector_input(form)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue