RinteRface / shinydashboardPlus

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

Use BoxProfile without an image #55

Closed nschwamm closed 5 years ago

nschwamm commented 5 years ago

Is there a way to use boxProfile without an image? The description says src is "profile image, if any", but even if you explicitly call src=NULL (as below), it still shows a blank image with the distorted circle. I also tried src=NA and excluding the src argument all together

boxProfile(
  src=NULL,
  title = "Name",
  subtitle = "Job Title",
  boxProfileItemList(
    bordered = TRUE,
    boxProfileItem(
      title = "Element 1",
      description = 10
    ),
    boxProfileItem(
      title = "Element 2",
      description = 20
    )
  )
)

image

Thanks!