Skip to content

Commit

Permalink
app update for selectInput
Browse files Browse the repository at this point in the history
  • Loading branch information
noriakis committed Apr 20, 2024
1 parent c58c8a1 commit 45d2dad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inst/extdata/app_stana.R
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ ui <- fluidPage(
),

column(3, align="center",
selectizeInput('cv', "Clinical variables",
selectInput('cv', "Clinical variables",
choices = NULL, multiple=TRUE),
uiOutput("col")
),
Expand Down Expand Up @@ -307,9 +307,9 @@ server <- function(input, output, session) {
## Load metadata onto reactive
values$meta <- meta

updateSelectizeInput(session, 'cv',
updateSelectInput(session, 'cv',
choices = colnames(meta),
server = TRUE,
# server = TRUE,
selected = first_choice[input$site])
})

Expand Down

0 comments on commit 45d2dad

Please sign in to comment.