We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b095320 commit a089da4Copy full SHA for a089da4
R/utils.R
@@ -70,7 +70,7 @@ as_df <- function(x) {
70
# arrange data if the vars exist, don't throw error if they don't
71
arrange_safe <- function(data, vars) {
72
vars <- vars[vars %in% names(data)]
73
- if (length(vars)) dplyr::arrange_(data, vars) else data
+ if (length(vars)) dplyr::arrange_(data, .dots = vars) else data
74
}
75
76
# make sure plot attributes adhere to the plotly.js schema
0 commit comments