Skip to content

Commit

Permalink
fix(cdp): wrap text by default in teams destination (#25843)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarconLP authored Oct 28, 2024
1 parent c61b3a9 commit 1afccff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
'body': [
{
'type': 'TextBlock',
'text': inputs.text
'text': inputs.text,
'wrap': true
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def test_function_works(self):
{
"type": "TextBlock",
"text": "**[email protected]** triggered event: '$pageview'",
"wrap": True,
}
],
},
Expand Down

0 comments on commit 1afccff

Please sign in to comment.