-
Notifications
You must be signed in to change notification settings - Fork 13
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
Causes javascript error #12
Comments
Hello, |
I can't share the code, but it's just a Here is the session info:
|
Mmh if I try something basic like below, I don't have any errors, there must be something else.. library(shiny)
library(shinylogs)
library(ggplot2)
ui <- fluidPage(
fluidRow(
column(
width = 3,
sliderInput(
"bins", "Bins",
min = 10, max = 50, value = 20
)
),
column(
width = 9,
plotOutput("plot")
)
)
)
server <- function(input, output, session) {
track_usage(store_null(console = TRUE))
output$plot <- renderPlot({
ggplot(diamonds, aes(x = carat)) +
geom_histogram(bins = input$bins)
})
}
shinyApp(ui, server) |
My application is obviously is a lot more complex than that, but that is all that's happening in my renderPlot() apart from the plot being returned by a function and some validate() functions beforehand. |
Ok thanks. |
Was just trying the package on one of my apps and got this error showing in the browser console. Impact on the app is a ggplot not appearing.
Location of error:
The text was updated successfully, but these errors were encountered: