diff --git a/CHANGELOG.md b/CHANGELOG.md index 133664f..247e910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ Find changes for the upcoming release in the project's [changelog.d directory](h + +## 0.2.1 (2024-04-03) + +### Bug fixes + +- Stop using the mrkdwn quote in the main unfurled content because it down't present well in mobile views. + ## 0.2.0 (2024-03-04) diff --git a/src/unfurlbot/services/jiraunfurler.py b/src/unfurlbot/services/jiraunfurler.py index 395ea8f..7203afc 100644 --- a/src/unfurlbot/services/jiraunfurler.py +++ b/src/unfurlbot/services/jiraunfurler.py @@ -153,7 +153,7 @@ def format_slack_message( # The main section block main_block = SlackTextSectionBlock( - text=(f"> <{issue.homepage}|*{issue.key}*> {issue.summary}"), + text=(f"<{issue.homepage}|*{issue.key}*> {issue.summary}"), fields=[], )