简体   繁体   中英

title in tab of browser empty in shiny dashboard page

Though there is the posibility to add a title in a shiny dashboard app, which appears correctly in the app page,

## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(title = "my title"),
  dashboardSidebar(),
  dashboardBody()
)

server <- function(input, output) { }

shinyApp(ui, server)

It does not appear as the name of tab of the browser. As name of tab in browser only appears the URL (like 127...) In fact the generated html has the <title></title> string in the first lines, so I could not put one HTML title string manually before it (only after, which does not work).

You can set the browser page title like this

ui <- dashboardPage(title="Browser title",
  dashboardHeader(title = "Basic dashboard"),
  dashboardSidebar(),
  ...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM