Skip to content

Commit f67741b

Browse files
committed
Fix ms teams output format
1 parent 3366d6c commit f67741b

File tree

1 file changed

+1
-1
lines changed
  • app/models/pager_tree/integrations/channel/microsoft_teams

1 file changed

+1
-1
lines changed

app/models/pager_tree/integrations/channel/microsoft_teams/v4.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def _blocks
162162
},
163163
{
164164
type: "FactSet",
165-
facts: _alert.additional_data&.map { |ad| {title: ad["label"], value: ad["value"]} } || [],
165+
facts: _alert.additional_data&.map { |ad| {title: ad["label"], value: Array(ad["value"]).join(", ")} } || [],
166166
spacing: "Medium",
167167
separator: true
168168
}

0 commit comments

Comments
 (0)