Skip to content

Commit

Permalink
Fix transcript display
Browse files Browse the repository at this point in the history
  • Loading branch information
jcraigk committed Oct 21, 2023
1 parent a57972b commit 9f7db12
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/helpers/tag_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def tag_notes(tag_instance)

def transcript_or_link(tag_instance, title)
return '' if tag_instance.try(:transcript).blank?
str = ''
str = '<br><br>' if title.present?
str + "<strong>Transcript</strong><br><br> #{tag_instance.transcript.gsub("\n", '<br>')}"
end
Expand Down

0 comments on commit 9f7db12

Please sign in to comment.