Bot framework V4. Unable to use ⭐ emoji in suggested actions #4007
Labels
Bot Services
Required for internal Azure reporting. Do not delete. Do not change color.
bug
Indicates an unexpected problem or an unintended behavior.
customer-reported
Issue is created by anyone that is not a collaborator in the repository.
needs-triage
The issue has just been created and it has not been reviewed by the team.
Milestone
Versions
What package version of the SDK are you using - 4.1.6
What nodejs version are you using - v14.18.2
What browser version are you using - Chrome
What os are you using - ubuntu
Describe the bug
I need to implement rating\review functionality in one of my bots. My plan was to use suggested actions and emojis in a waterfall dialog. As soon as I use star ⭐ in the options, the dialog does not go to the next step when this option is selected. It does work for other emoji-like 😁
I am testing it in the emulator..
async askFeedbackStep(stepContext) {
const CHOICES = ['⭐','😀'];
return await stepContext.prompt(FEEDBACK_PROMPT, {
choices: ChoiceFactory.toChoices(CHOICES),
style: ListStyle.suggestedAction
});
}
}
So if the user selects the first option with the code below, the option is not accepted and the dialog prompt is shown again. With the second option, the dialog goes to the next step.
Screenshots
The text was updated successfully, but these errors were encountered: