Merge pull request #646 from grafana/slack-resolution-note-formatting

Use markdown formatting for web based resolution notes
This commit is contained in:
Ildar Iskhakov 2022-10-24 19:22:12 +08:00 committed by GitHub
commit 1bf75d601d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -358,7 +358,7 @@ class UpdateResolutionNoteStep(scenario_step.ScenarioStep):
author_verbal = resolution_note.author_verbal(mention=True)
resolution_note_text_block = {
"type": "section",
"text": {"type": "plain_text", "text": resolution_note.text, "emoji": True},
"text": {"type": "mrkdwn", "text": resolution_note.text, "emoji": True},
}
blocks.append(resolution_note_text_block)
context_block = {