Skip to content

Commit

Permalink
fix list_action_options
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Nov 4, 2020
1 parent da2dce2 commit 0a38c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/geoflow_action.R
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ list_action_options <- function(id){
out <- data.frame(
name = names(action$options),
definition = sapply(action$options, function(x){x$desc}),
default = sapply(action$options, function(x){x$default}),
default = paste0(sapply(action$options, function(x){x$default}), collapse=","),
stringsAsFactors = FALSE
)
row.names(out) <- 1:nrow(out)
Expand Down

0 comments on commit 0a38c31

Please sign in to comment.