Skip to content

Commit

Permalink
Update helpers-data.R
Browse files Browse the repository at this point in the history
fix wrong column name
  • Loading branch information
DivadNojnarg authored Oct 19, 2023
1 parent 04c31ca commit 75035c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/helpers-data.R
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ get_rsc_developer_apps_count <- function(developer, logs) {
#' @importFrom rlang .data
get_rsc_developer_apps_list <- function(developer, logs) {
logs %>%
filter(.data$owner_guid == !!developer) %>%
filter(.data$user_guid == !!developer) %>%
group_by(.data$app_name) %>%
count(sort = TRUE)
}
Expand Down

0 comments on commit 75035c4

Please sign in to comment.