We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
library(shiny) ui <- fluidPage( tagList(h1("hello"), ) ) server <- function(input, output) { } shinyApp(ui = ui, server = server)
This extremely simple shiny app works fine in shiny. Notice the trailing comma after the h1().
It compiles/translates to shinylive no problem. But when you run it from the static site, it gets this:
Clearly, the comma is a problem at run time for shiny live, but not for shiny.
The text was updated successfully, but these errors were encountered:
Interestingly, it isn't a problem on shinylive.io.
Sorry, something went wrong.
No branches or pull requests
This extremely simple shiny app works fine in shiny. Notice the trailing comma after the h1().
It compiles/translates to shinylive no problem. But when you run it from the static site, it gets this:
Clearly, the comma is a problem at run time for shiny live, but not for shiny.
The text was updated successfully, but these errors were encountered: