Skip to content

Commit 0a38c31

Browse files
committed
fix list_action_options
1 parent da2dce2 commit 0a38c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/geoflow_action.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ list_action_options <- function(id){
383383
out <- data.frame(
384384
name = names(action$options),
385385
definition = sapply(action$options, function(x){x$desc}),
386-
default = sapply(action$options, function(x){x$default}),
386+
default = paste0(sapply(action$options, function(x){x$default}), collapse=","),
387387
stringsAsFactors = FALSE
388388
)
389389
row.names(out) <- 1:nrow(out)

0 commit comments

Comments
 (0)