You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When using a SelectionPrompt, the prompt title and selected value don't remain visible in the console after selection.
Describe the solution you'd like
Like other prompts, I'd like the title and value to appear in the console for troubleshooting/log retention.
Describe alternatives you've considered
Currently, I need to manually print the title and value after selection:
stringdatabaseTitle=$"[{Constants.PROMPT_COLOR}]Database:[/] ";connectionSettings.DatabaseName=AnsiConsole.Prompt(newSelectionPrompt<string>(){Title=databaseTitle}.AddChoices(databaseNames));// SelectionPrompts do not appear in console after selection, so print the selected valueAnsiConsole.Markup(databaseTitle+connectionSettings.DatabaseName);
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When using a
SelectionPrompt
, the prompt title and selected value don't remain visible in the console after selection.Describe the solution you'd like
Like other prompts, I'd like the title and value to appear in the console for troubleshooting/log retention.
Describe alternatives you've considered
Currently, I need to manually print the title and value after selection:
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered: