-
-
Notifications
You must be signed in to change notification settings - Fork 994
Open
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviornextto consider for next releaseto consider for next releasetheme: htmltoolsRelated to htmltoolsRelated to htmltoolstheme: shinyregarding shiny support in R Markdown documentregarding shiny support in R Markdown document
Description
I deployed a shiny app that is generated with the package learn, shinydashboard and shiny. Prior to updating rmarkdown to the latest version (before I used version 1.12) everything worked fine.
I obtain the following error when deploying my shiny-app (both locally and in Browser):
Couldn't normalize path in `addResourcePath`, with arguments: `prefix` = 'shinydashboard-0.7.1'; `directoryPath` = ''
Below you find my sessionInfo():
locale:
[1] LC_COLLATE=German_Switzerland.1252 LC_CTYPE=German_Switzerland.1252 LC_MONETARY=German_Switzerland.1252 LC_NUMERIC=C
[5] LC_TIME=German_Switzerland.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] DT_0.18 rmarkdown_2.9 forcats_0.5.1 shinydashboard_0.7.1 shiny_1.6.0 dplyr_1.0.7 ggplot2_3.3.5
[8] e1071_1.7-7 learnr_0.10.1
loaded via a namespace (and not attached):
[1] Rcpp_1.0.7 compiler_4.1.0 pillar_1.6.1 later_1.2.0 class_7.3-19 tools_4.1.0 digest_0.6.27 jsonlite_1.7.2
[9] evaluate_0.14 lifecycle_1.0.0 tibble_3.1.2 gtable_0.3.0 pkgconfig_2.0.3 rlang_0.4.11 DBI_1.1.1 yaml_2.2.1
[17] xfun_0.24 fastmap_1.1.0 withr_2.4.2 knitr_1.33 generics_0.1.0 vctrs_0.3.8 htmlwidgets_1.5.3 tidyselect_1.1.1
[25] rprojroot_2.0.2 grid_4.1.0 glue_1.4.2 R6_2.5.0 fansi_0.5.0 purrr_0.3.4 magrittr_2.0.1 scales_1.1.1
[33] promises_1.2.0.1 ellipsis_0.3.2 htmltools_0.5.1.1 assertthat_0.2.1 mime_0.11 xtable_1.8-4 colorspace_2.0-2 httpuv_1.6.1
[41] utf8_1.2.1 proxy_0.4-26 munsell_0.5.0 crayon_1.4.1 markdown_1.1
You find a minimal working example below, please advise on this issue.
---
title: "Minimal Example"
output: learnr::tutorial
runtime: shiny_prerendered
---
```{r setup, include=FALSE}
library(learnr)
#library(manipulate)
#library(manipulateWidget)
library(e1071)
library(ggplot2)
library("dplyr")
library(shiny)
library(shinydashboard)
library(forcats)
#ev noch zu installieren
library(rmarkdown)
#library(shinyFiles)
library(DT)
#library(shinythemes)
#library(googleLanguageR)
knitr::opts_chunk$set(echo = FALSE)
#gl_auth("www/geocoding-R-df7e8c111682.json")
```
## APP zu deskriptiven Statistiken
```{r,inputall,echo=FALSE}
#shinythemes::themeSelector()
sidebar <- dashboardSidebar(
sidebarMenu(
menuItem("Deskriptive Statistiken", tabName = "deskr")
)
)
body <- dashboardBody(
)
dashboardPage(
dashboardHeader(title = "Deskriptive Statistiken"),
sidebar,
body
)
```
```{r,context="server"}
observeEvent(input$update,{
updateTextAreaInput(session=session,"vecbox",value = input$eingabe)
})
```Describe the problem in detail
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviornextto consider for next releaseto consider for next releasetheme: htmltoolsRelated to htmltoolsRelated to htmltoolstheme: shinyregarding shiny support in R Markdown documentregarding shiny support in R Markdown document
Type
Projects
Status
Todo In Progress