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.
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,
},
TextBlock used for
titlein msteamsv2 receiver needswrap: trueto 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
titleis usingwrap: truealready.alertmanager/notify/msteamsv2/msteamsv2.go
Line 162 in ff8c09d
When there is a lengthy line, the
titleis displayed correctly but thetextis not. So, please addwrap: trueintextas well.{ Type: "TextBlock", Text: title, Weight: "Bolder", Size: "Medium", Wrap: true, Style: "heading", Color: color, }, { Type: "TextBlock", Text: text, Wrap: true, },