Skip to content

Commit

Permalink
Merge pull request #235 from elipousson/list_field_domains-fix
Browse files Browse the repository at this point in the history
Fill in missing arg for arg_match in `list_field_domains`
  • Loading branch information
JosiahParry authored Feb 2, 2025
2 parents 0b9b19c + 30f3388 commit 3893210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ list_field_domains <- function(x,
domains <- rlang::set_names(fields[["domain"]], nm)

if (!is.null(field)) {
field <- rlang::arg_match(nm, multiple = TRUE, error_call = call)
field <- rlang::arg_match(field, nm, multiple = TRUE, error_call = call)
domains <- domains[nm %in% field]
}

Expand Down

0 comments on commit 3893210

Please sign in to comment.