Skip to content

Commit

Permalink
patch for NULL issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DivadNojnarg committed Feb 8, 2023
1 parent 56dfa4e commit fd92ce4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions R/heatmap.R
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,11 @@ process_heatmap <- function(...) {
# process_heatmap is called in server.R
session <- get("session", envir = parent.frame(n = 1))

# Init global option
if (is.null(getOption("shinyHeatmap.debug"))) {
options("shinyHeatmap.debug" = FALSE)
}

# Trigger once
observeEvent({
session$clientData
Expand Down

0 comments on commit fd92ce4

Please sign in to comment.