Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

898 save app state version 3 #262

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
syntactic error fix
Aleksander Chlebowski committed Mar 25, 2024
commit 63d7279620323334505cfb1db3c997cb507e70a0
6 changes: 3 additions & 3 deletions R/tm_g_ae_oview.R
Original file line number Diff line number Diff line change
@@ -275,12 +275,12 @@ srv_g_ae_oview <- function(id,
updateSelectInput(
inputId = "arm_ref",
choices = choices,
selected = restoreInput(ns("arm_ref", choices[1L]))
selected = restoreInput(ns("arm_ref"), choices[1L])
)
updateSelectInput(
inputId = "arm_trt",
selected = restoreInput(ns("arm_trt", choices[trt_index])),
choices = choices
choices = choices,
selected = restoreInput(ns("arm_trt"), choices[trt_index])
)
})

4 changes: 2 additions & 2 deletions R/tm_g_ae_sub.R
Original file line number Diff line number Diff line change
@@ -241,12 +241,12 @@ srv_g_ae_sub <- function(id,
updateSelectInput(
inputId = "arm_trt",
choices = choices,
selected = restoreInput(ns("arm_trt", choices[1L]))
selected = restoreInput(ns("arm_trt"), choices[1L])
)
updateSelectInput(
inputId = "arm_ref",
choices = choices,
selected = restoreInput(ns("arm_ref", choices[ref_index]))
selected = restoreInput(ns("arm_ref"), choices[ref_index])
)
})