Skip to content

Commit

Permalink
add bslib to NAMESPACE
Browse files Browse the repository at this point in the history
  • Loading branch information
js3110 committed Nov 25, 2024
1 parent 617850e commit 5684c04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export(pptestcd_dict)
export(reshape_pknca_results)
export(run_app)
export(set_empty_label)
import(bslib)
import(dplyr)
import(forcats)
import(ggplot2)
Expand Down
1 change: 1 addition & 0 deletions R/run_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#' When adding new imports, please keep the alphabetical order, at lest for packages.
#'
#' @import shiny
#' @import bslib
#' @importFrom dplyr mutate filter select group_by summarise pull arrange ungroup
#' @importFrom dplyr rename_with across case_when left_join rename
#' @importFrom DT DTOutput renderDataTable datatable formatStyle styleEqual
Expand Down
9 changes: 4 additions & 5 deletions inst/shiny/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ fluidPage(

navbarPage(
id = "page",
title = "",
title = "aNCA",
# DATA ----
tabPanel(
nav_panel(
"Data",
fluid = TRUE,
tab_data_ui("data")
),
# NCA ----
tabPanel("NCA", fluid = TRUE,
nav_panel("NCA", fluid = TRUE,
fluidPage(
actionButton("nca", "Run NCA", class = "run-nca-btn"),

Expand Down Expand Up @@ -219,10 +219,9 @@ fluidPage(
nav_panel("Visualisation",
fluid = TRUE,
tab_visuals_ui("visuals")

),
# New TLG tab
tabPanel("TLG",
nav_panel("TLG",
tab_tlg_ui("tlg")
)
),
Expand Down

0 comments on commit 5684c04

Please sign in to comment.