Skip to content

Commit

Permalink
added debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoLeist committed Oct 7, 2024
1 parent b2e87df commit b32e248
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions phenoRankeR/R/app_server.R
Original file line number Diff line number Diff line change
Expand Up @@ -386,13 +386,16 @@ app_server <- function(input, output, session) {
print("res")
print(res)

print("nrow(res)")
print(nrow(res))

# if the query does not return a result
# return

# if (nrow(res) == 0) {
# print("no results found")
# return()
# }
if (nrow(res) == 0) {
print("no results found")
return()
}

settings <- fromJSON(res$settings)
print("settings")
Expand Down

0 comments on commit b32e248

Please sign in to comment.