mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
version bump - rails on data browse
Some checks failed
pkgdown.yaml / pkgdown (push) Has been cancelled
Some checks failed
pkgdown.yaml / pkgdown (push) Has been cancelled
This commit is contained in:
parent
a51e7f2877
commit
111c0663bc
1 changed files with 10 additions and 3 deletions
|
@ -49,7 +49,7 @@ library(rlang)
|
|||
#### Current file: /Users/au301842/FreesearchR/R//app_version.R
|
||||
########
|
||||
|
||||
app_version <- function()'25.5.7'
|
||||
app_version <- function()'25.6.1'
|
||||
|
||||
|
||||
########
|
||||
|
@ -3996,7 +3996,7 @@ simple_snake <- function(data){
|
|||
#### Current file: /Users/au301842/FreesearchR/R//hosted_version.R
|
||||
########
|
||||
|
||||
hosted_version <- function()'v25.5.7-250604'
|
||||
hosted_version <- function()'v25.6.1-250604'
|
||||
|
||||
|
||||
########
|
||||
|
@ -10368,7 +10368,14 @@ server <- function(input, output, session) {
|
|||
)
|
||||
|
||||
observeEvent(input$modal_browse, {
|
||||
show_data(REDCapCAST::fct_drop(rv$data_filtered), title = "Uploaded data overview", type = "modal")
|
||||
tryCatch(
|
||||
{
|
||||
show_data(REDCapCAST::fct_drop(rv$data_filtered), title = "Uploaded data overview", type = "modal")
|
||||
},
|
||||
error = function(err) {
|
||||
showNotification(paste0("We encountered the following error browsing your data: ", err), type = "err")
|
||||
}
|
||||
)
|
||||
})
|
||||
|
||||
output$original_str <- renderPrint({
|
||||
|
|
Loading…
Add table
Reference in a new issue