I have a shiny app using the package shinydashboard.
At first, I had all the files as 3 files - global.R, server.R, ui.R.
As files got bigger and messy, I took out the codes for each menus, and placed them in a separate folder. (splitting shiny files - http://shiny.rstudio.com/articles/scoping.html)
everything works, but there's something annoying happening - it displays 'TRUE' at the bottom of the ui of the menus I split into separate folder.
If everything is just in one big file, it doesn't display TRUE.
anyone know why this is happening?
functionally, everything is same.