Skip to content

Commit

Permalink
Fix access to find_common_prefix in analysis app (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-Kent committed Jan 11, 2022
1 parent 2db7f6c commit df20867
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inst/analysis_app/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ shinyServer(function(input, output, server) {
if ('Slide ID' %in% names(d)) {
unique_ids = unique(d$`Slide ID`)
the_data$slide_id_prefix = slide_id_prefix =
ifelse(length(unique_ids) > 1, find_common_prefix(unique_ids), '')
ifelse(length(unique_ids) > 1,
phenoptrReports:::find_common_prefix(unique_ids), '')
by_choices = c('Slide ID', phenoptr::field_column(d))
} else {
# No Slide ID column
Expand Down

0 comments on commit df20867

Please sign in to comment.