diff --git a/R/default_admin_ui_options.R b/R/default_admin_ui_options.R index 00969f1..863a584 100644 --- a/R/default_admin_ui_options.R +++ b/R/default_admin_ui_options.R @@ -16,8 +16,9 @@ default_admin_ui_options <- function() { title = tagList( tags$a( href = "https://polished.tech/", + target = "_blank", tags$img( - src="polish/images/polished_logo_transparent_text_2.png", + src = "polish/images/polished_logo_transparent_text_2.png", style = "height: 37.5px; width: 180px; padding: 0", alt = "Polished Logo" ) @@ -28,6 +29,7 @@ default_admin_ui_options <- function() { sidebar_branding = tags$a( href = "https://www.tychobra.com/", + target = "_blank", tags$img( style = "position: fixed; bottom: 0; left: 0; width: 230px;", src = "polish/images/tychobra_logo_blue_co_name.png" diff --git a/R/sentry_ui.R b/R/sentry_ui.R index d181222..4f4831b 100644 --- a/R/sentry_ui.R +++ b/R/sentry_ui.R @@ -17,12 +17,12 @@ sentry_ui <- function(sentry_dsn, app_uid, user = NULL, r_env = "default") { function(page) { htmltools::tagList( shiny::includeScript( - path="https://browser.sentry-cdn.com/5.29.1/bundle.tracing.min.js", - integrity="sha384-oMewZ7UOLvGpEKmWrXEBuQZA7ftGffl8JUn8O1yhF41YQdhxpVAMP0y0e83AWhDL", + path = "https://browser.sentry-cdn.com/6.17.5/bundle.tracing.min.js", + integrity = "sha384-WrynDI0HStBVeac9kJphtAdpOdSLy2mR/T0Fn0YTCrxPZ2VV0gkj/T4JHwhX+gHw", type = "text/javascript", - crossorigin="anonymous" + crossorigin = "anonymous" ), - tags$script(src="polish/js/sentry.js"), + tags$script(src = "polish/js/sentry.js"), tags$script( sprintf( "sentry_init('%s', '%s', %s, '%s', '%s')", diff --git a/R/set_config_env.R b/R/set_config_env.R index b927822..92fe93b 100644 --- a/R/set_config_env.R +++ b/R/set_config_env.R @@ -14,7 +14,7 @@ #' set_config_env <- function(override = NULL) { - if (!(is.null(override) || override %in% c("default", "production"))) { + if (!(is.null(override) || override %in% c("default", "development", "production"))) { stop("invalid `override` argument passed to `set_config_env`", call. = FALSE) }