8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b74bb2 commit 5c256faCopy full SHA for 5c256fa
libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/choice_prompt.py
@@ -121,7 +121,9 @@ async def on_prompt(
121
if self.choice_options
122
else ChoicePrompt._default_choice_options[culture]
123
)
124
- choice_style = options.style if options.style else self.style
+ choice_style = (
125
+ 0 if options.style == 0 else options.style if options.style else self.style
126
+ )
127
128
if is_retry and options.retry_prompt is not None:
129
prompt = self.append_choices(
0 commit comments