Skip to content

Commit

Permalink
make sure we always have a data2 var
Browse files Browse the repository at this point in the history
  • Loading branch information
d-callan committed Nov 30, 2023
1 parent 63e003f commit 71fa009
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ server <- function(input, output, session) {
data1 <- readData(file1)
if (!is.null(file2)) {
data2 <- readData(file2)
} else {
data2 <- NULL
}

lastData1ColIndex <- length(data1)
Expand Down

0 comments on commit 71fa009

Please sign in to comment.