Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Return early for no snippets #260

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/helpers/iiif_print/iiif_print_helper_behavior.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ module IiifPrint::IiifPrintHelperBehavior
# @return [String] snippets HTML to be rendered
# rubocop:disable Rails/OutputSafety
def render_ocr_snippets(options = {})
# debugger
snippets = options[:value]
return if snippets.blank?

snippets_content = [content_tag('div',
"... #{snippets.first} ...".html_safe,
class: 'ocr_snippet first_snippet')]
Expand All @@ -19,4 +20,4 @@ def render_ocr_snippets(options = {})
snippets_content.join("\n").html_safe
end
# rubocop:enable Rails/OutputSafety
end
end