rstudio / shiny

Easy interactive web applications with R
https://shiny.posit.co/
Other
5.35k stars 1.87k forks source link

App with no outputs never stops pulsing #4056

Closed cpsievert closed 4 months ago

cpsievert commented 4 months ago

Intentional duplicate of https://github.com/posit-dev/py-shiny/issues/1398 (the fix will derive from this repo).

library(shiny)

ui <- fluidPage(
  useBusyIndicators(),
  sliderInput("n", "Number of obs", 1, 1000, 500)
)

server <- function(input, output, session) {

}

shinyApp(ui, server)