Commit 35c17702 authored by Eugenie Lohmann's avatar Eugenie Lohmann 🎨
Browse files

delete session will provoque reload session

parent 6c041f3a
Package: analycyte
Title: analycyte Shiny Application
Version: 3.0.5
Version: 3.0.6
Authors@R: c(
person("Eugénie", "Lohmann", , "eugenie.lohmann@inserm.fr", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-3230-8363")),
......
# analycyte 3.0.6
* session$reload() when deleting a project
# analycyte 3.0.31
## BUG REPORT
......
......@@ -227,6 +227,7 @@ app_server <- function(input, output, session) {
}
reloadTrigger(reloadTrigger() + 1)
# project_update(project_update() + 1)
}
)
......@@ -297,8 +298,10 @@ app_server <- function(input, output, session) {
resetProject(deleteFiles = TRUE)
reloadTrigger(reloadTrigger() + 1)
r_global <<- reactiveValues() # use the global assignment operator <<-
session$reload()
})
observeEvent(input$unsyncProject, {
resetProject(deleteFiles = FALSE)
reloadTrigger(reloadTrigger() + 1)
......
......@@ -394,3 +394,11 @@ margin: 5px;
.shiny-icon {
margin-right: 5px;
}
.modal-header {
border-bottom: none;
}
.modal-footer {
border-top: none;
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment