Closed
Description
TextBlock used for title
in msteamsv2 receiver needs wrap: true
to display the content correctly.
{
Type: "TextBlock",
Text: title,
Weight: "Bolder",
Size: "Medium",
Wrap: true,
Style: "heading",
Color: color,
},
{
Type: "TextBlock",
Text: text,
},
Note: - The TextBlock used for title
is using wrap: true
already.
alertmanager/notify/msteamsv2/msteamsv2.go
Line 162 in ff8c09d
When there is a lengthy line, the title
is displayed correctly but the text
is not. So, please add wrap: true
in text
as well.
{
Type: "TextBlock",
Text: title,
Weight: "Bolder",
Size: "Medium",
Wrap: true,
Style: "heading",
Color: color,
},
{
Type: "TextBlock",
Text: text,
Wrap: true,
},
Metadata
Metadata
Assignees
Labels
No labels