Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
and: coerce choices vector to character
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikSchultheis committed Apr 23, 2018
1 parent 9f20a94 commit 8643bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/and.R
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ and <- function(input, output, session, data, show.elements = NULL, element.grou
shiny::callModule(
module = orTextual,
id = openssl::sha1(names(data.r())[x]),
choices = data.r()[[x]],
choices = as.character(data.r()[[x]]),
label = parameter()$column.labels[x],
delimiter = parameter()$delimiter[x],
multiple = parameter()$multiple[x],
Expand Down

0 comments on commit 8643bdb

Please sign in to comment.