Skip to content

Commit

Permalink
fix editor matching for languages #31
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Apr 25, 2024
1 parent 50dc44e commit 8a3585e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashboard
Title: What the Package Does (One Line, Title Case)
Version: 0.1.9.002
Version: 0.1.9.003
Authors@R:
person(given = "First",
family = "Last",
Expand Down
2 changes: 1 addition & 1 deletion R/editors-airtable.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ add_editor_airtable_data <- function (editors) {
rev_prod <- rev_prod$`reviewers-prod`$select_all (fields = fields)

editors$other_langs <- editors$domain_expertise <- NA_character_
index <- match (editors$editor, rev_prod$github)
index <- match (tolower (editors$editor), tolower (rev_prod$github))

editors$other_langs <- vapply (
rev_prod$other_langs [index],
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "dashboard: What the Package Does (One Line, Title Case)",
"codeRepository": "https://github.com/ropensci-review-tools/dashboard",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.9.002",
"version": "0.1.9.003",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 8a3585e

Please sign in to comment.