In a shiny app, is there a way to prevent the text of the dropdown in selectInput() from wrapping, as in the screenshot below? Each option is a long text string
selectInput()
If you do selectize=False, within
selectize=False
selectInput(id="id",label="label",choices=your_choices, selectize=False)
It will not wrap on your text.