Skip to content

Commit

Permalink
Rename output IDE to prevent DOM conflicts (#1114)
Browse files Browse the repository at this point in the history
# Pull Request

Fixes #1044

### Changes description

* Rename output ID

Note: I don't think this is `NEWS.md` noteworthy.

---------

Co-authored-by: kartikeya kirar <kirar.kartikeya1@gmail.com>
  • Loading branch information
averissimo and kartikeyakirar authored Apr 10, 2024
1 parent a1fc91a commit b1ac512
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/tm_t_logistic.R
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ ui_t_logistic <- function(id, ...) {
data_extract_spec = a$cov_var,
is_single_dataset = is_single_dataset_value
),
uiOutput(ns("interaction_var")),
uiOutput(ns("interaction_variable")),
uiOutput(ns("interaction_input")),
teal.widgets::optionalSelectInput(
inputId = ns("conf_level"),
Expand Down Expand Up @@ -558,7 +558,7 @@ srv_t_logistic <- function(id,
)
})

output$interaction_var <- renderUI({
output$interaction_variable <- renderUI({
cov_var <- as.vector(merged$anl_input_r()$columns_source$cov_var)
if (length(cov_var) > 0) {
teal.widgets::optionalSelectInput(
Expand Down

0 comments on commit b1ac512

Please sign in to comment.