RinteRface / shinydashboardPlus

extensions for shinydashboard
https://shinydashboardplus.rinterface.com
Other
454 stars 77 forks source link

Error issues about column width with 'column' in shiny #60

Closed SeungminHeo closed 3 years ago

SeungminHeo commented 4 years ago

Hi.

I'm using your ShinydashboardPlus package, I re-write my shinyapp code with your package.

But I found an error with column width.

this is my example code about layout in body section

tab_kpi <- function() {
  list(
    fluidPage(
      fluidRow(
        id = "row_title",
        column(width = 5, 
               id = "col_title",
               h4("example")
        )
      )
    )
  )
}

At first run, no error occurs, but after that column width must be between 1 and 12 error occurs.

Is there any solution to this error?

DivadNojnarg commented 4 years ago

can You provide a reprex?