Skip to content

Commit

Permalink
refactor: removed mixing patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kolomanski committed Dec 12, 2024
1 parent d0ac1f6 commit 4479fe7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion inst/shiny/modules/tab_tlg.R
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,10 @@ tab_tlg_server <- function(id, data) {
choices = "")
}

tlg_order_graphs <- filter(tlg_order_filt, Type == "Graph")$id
tlg_order_graphs <- filter(tlg_order_filt, Type == "Graph") %>%
select("id") %>%
pull()

panels <- lapply(tlg_order_graphs, function(g_id) {
plot_ui <- {
g_def <- .TLG_DEFINITIONS[[g_id]]
Expand Down
2 changes: 1 addition & 1 deletion inst/shiny/tlg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ g_pkconc_ind_log:
ymin:
type: numeric
ymax:
type: numeric
type: numeric

0 comments on commit 4479fe7

Please sign in to comment.