Skip to content

Commit 9f8f04c

Browse files
committed
selectInput: use form-control for multiple and single
1 parent 69aec85 commit 9f8f04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/bootstrap.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ selectInput <- function(inputId, label, choices, selected = NULL,
785785
# create select tag and add options
786786
selectTag <- tags$select(
787787
id = inputId,
788-
class = if (multiple && !selectize) "form-control",
788+
class = if (!selectize) "form-control",
789789
selectOptions(choices, selected)
790790
)
791791
if (multiple)

0 commit comments

Comments
 (0)