Fixed rendering of excess whitespace in status card titles (#30017)

pull/30056/head
Tim Rogers 12 months ago committed by GitHub
parent f4a53f3fb4
commit b128474625
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -156,7 +156,7 @@ class LinkDetailsExtractor
end
def title
html_entities.decode(structured_data&.headline || opengraph_tag('og:title') || document.xpath('//title').map(&:content).first)
html_entities.decode(structured_data&.headline || opengraph_tag('og:title') || document.xpath('//title').map(&:content).first).strip
end
def description

Loading…
Cancel
Save