rstudio / shinydashboard

Shiny Dashboarding framework
https://rstudio.github.io/shinydashboard/
Other
887 stars 299 forks source link

box() is not working when `...` is specified explicitly #271

Closed grayskripko closed 6 years ago

grayskripko commented 6 years ago

box(someInput) is working The only problem is box(... = someInput) call. This leads to very unexpected behavior.

wch commented 6 years ago

In R, ... is never supposed to be used as an explicit argument to a function. If you do that same thing with any function in R that accepts ..., the behavior will be not what you expect.