Tychobra / polished

Authentication and Administration for Shiny apps
https://polished.tech
Other
234 stars 36 forks source link

Replace Tab Icon #153

Closed farhadsalimi closed 2 years ago

farhadsalimi commented 2 years ago

Hi, Thanks again for your work. Is there a way to replace/remove the Polished tab icon?

merlinoa commented 2 years ago

You can replace the browser tab icon on the default sign in page with the "icon_href" argument to sign_in_ui_default(): https://github.com/Tychobra/polished/blob/26179a4dc15ad1429d86fb10b0dd80ed2a26be6b/R/sign_in_ui_default.R#L44

so something like this should work:

secure_ui(
  ui,
  sign_in_page_ui = sign_in_ui_default(
    icon_href = "link to your logo"
  )
)

Is that what you are referring to?

farhadsalimi commented 2 years ago

Thanks for your quick reply, I didn't know it already exists, sorry :)