Open ejanalysis opened 6 months ago
Bug In the shiny app, clicking on a package name fails to get and use the actual package name.
Steps to reproduce the behavior
Expected behavior Should create a new graph with that selected new package name that was clicked on.
Solution suggested In server.R, fix one line by using as.character()
# fixed line: new_package <- as.character(adjacency_df[which.min(adjacency_df[["dist_"]]), "name"]) # old line: # new_package <- adjacency_df[which.min(adjacency_df[["dist_"]]), "name"]
Bug In the shiny app, clicking on a package name fails to get and use the actual package name.
Steps to reproduce the behavior
Expected behavior Should create a new graph with that selected new package name that was clicked on.
Solution suggested In server.R, fix one line by using as.character()