Input.ChoiceSet (filtered, multiselect): Selected chips truncate text with no tooltip on hover in Teams #9367
mayank0505
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When using Input.ChoiceSet with isMultiSelect: true and style: "filtered", selected values render as compact pill/chip elements. For choices with longer titles, the text is heavily truncated (e.g., (ABC) Contoso Gl...), making it difficult — sometimes impossible — for users to distinguish between similar items.
There is no tooltip on hover over the chips in the Microsoft Teams desktop client, so users have no way to see the full title of a selected value.
Reproduction
Adaptive Card JSON:
{
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "Input.ChoiceSet",
"id": "products",
"isMultiSelect": true,
"style": "filtered",
"choices": [
],
"value": "1,2,3,4,5"
}
Beta Was this translation helpful? Give feedback.
All reactions