microsoft / BotFramework-Emulator

A desktop application that allows users to locally test and debug chat bots built with the Bot Framework SDK.
https://aka.ms/botemulator
MIT License
1.81k stars 753 forks source link

formflow buttons not filling text automatically #419

Closed fkay closed 6 years ago

fkay commented 6 years ago

The form is correctly rendered on the emulator but when a button is clicked he changes the color indicating the click but do not send a message with the button text.

Emulator version is v3.5.35

EricDahlvang commented 6 years ago

This sounds like a FormFlow issue. This forum is for questions pertaining to the Bot Framework Emulator. You might try asking your question over at the BotBuilder repository, or post on Stack Overflow (and be sure to tag your question with botframework).

rcarubbi commented 5 years ago

this issue occurs on FormFlow\IPrompt.cs in line 201 actions.Add(new CardAction(ActionTypes.ImBack, button.Description, button.Image, button.Message ?? button.Description));

this constructor doesn't fill the text property which causes a badrequest error when the activity is sent to telegram for example.