Skip to content

Commit

Permalink
feat: added results modules for table output
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleGrealis committed Jan 11, 2024
1 parent 115176c commit 1cf6ec0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ ui <- function(id) {
)
), # navset_card_tab
card(
# card_body("words"),
card_body(algo$ui(ns("algo"))),
min_height = "100px"
max_height = "10vh"
)
), # nav_panel
nav_spacer(),
Expand All @@ -95,7 +94,7 @@ server <- function(id) {
inputs <- inputs$server("inputs", newFile)
results <- algo$server("algo", newFile, inputs)

matched_results$server("matched", results)
matched_results$server("matched", newFile, inputs, results)
unmatched_results$server("cases", newFile, inputs, results, "cases")
unmatched_results$server("controls", newFile, inputs, results, "controls")

Expand Down

0 comments on commit 1cf6ec0

Please sign in to comment.