Skip to content

Commit e0b9e0e

Browse files
committed
fix: remove unnecessary div
1 parent 8cb4a52 commit e0b9e0e

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

R/dummy_functions.R

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,12 @@ example_module <- function(label = "example teal module",
8383
},
8484
ui = function(id, decorators) {
8585
ns <- NS(id)
86-
div(
87-
teal.widgets::standard_layout(
88-
output = verbatimTextOutput(ns("text")),
89-
encoding = tags$div(
90-
selectInput(ns("dataname"), "Choose a dataset", choices = NULL),
91-
ui_teal_transform_data(ns("decorate"), transformators = decorators),
92-
teal.widgets::verbatim_popup_ui(ns("rcode"), "Show R code")
93-
)
86+
teal.widgets::standard_layout(
87+
output = verbatimTextOutput(ns("text")),
88+
encoding = tags$div(
89+
selectInput(ns("dataname"), "Choose a dataset", choices = NULL),
90+
ui_teal_transform_data(ns("decorate"), transformators = decorators),
91+
teal.widgets::verbatim_popup_ui(ns("rcode"), "Show R code")
9492
)
9593
)
9694
},

0 commit comments

Comments
 (0)