diff --git a/R/checkbox.R b/R/checkbox.R index 7c0017a0..d0d77c7b 100644 --- a/R/checkbox.R +++ b/R/checkbox.R @@ -142,10 +142,13 @@ multiple_checkbox <- function(input_id, label, choices, choices_value = choices, })) shiny::div( - id = input_id, class = paste(position, "fields ss-checkbox-input"), - tags$label(`for` = input_id, label), - choices_html, - ... + class = "ui form", + shiny::div( + id = input_id, class = paste(position, "fields ss-checkbox-input"), + tags$label(`for` = input_id, label), + choices_html, + ... + ) ) }