question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

For beta_set_page_config, page_title still includes "Streamlit"

See original GitHub issue

When running st.beta_set_page_config(page_title="streamlit-embedcode documentation",), the Streamlit app appends an extra · Streamlit value to the string:

<title>streamlit-embedcode documentation · Streamlit</title>

In letting the user set the value, we should not display anything other than what the user wrote.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:7
  • Comments:23 (1 by maintainers)

github_iconTop GitHub Comments

8reactions
mzeidhassancommented, Jan 9, 2021

Any update on this one? I thought this would be an easy fix from Streamlit team’s side.

6reactions
anlinguistcommented, Oct 22, 2020

As a temporary workaround, you can modify the streamlit frontend main file to remove “· Streamlit” from the title.

  1. Go to site-packages/streamlit/static/static/js/ and find the ‘main…chunk.js’ file and open it.
  2. Search for document.title="".concat(t," \xb7 Streamlit") and replace it with document.title="".concat(t,"")
  3. Restart streamlit app and “· Streamlit” should be gone from the title
Read more comments on GitHub >

github_iconTop Results From Across the Web

st.set_page_config - Streamlit Docs
Configures the default settings of the page. This must be the first Streamlit command used in your app, and must only be set...
Read more >
Change Streamlit app's title tag - Is it possible?
Hi guys I'm looking for a way to change my app's title tag, currently defaulted to ... For beta_set_page_config, page_title still includes "Streamlit"....
Read more >
How do i change the app title and favicon? - Using Streamlit
There is no way at the moment to change favicon. As for title, it reflects the name of your script, but no way...
Read more >
St.set_page_config does not directly display the website title I ...
set_page_config, every time I open the app, “Streamlit” is still displayed first, and then the title I set is displayed? How can I...
Read more >
API Reference - Streamlit Docs
Utilities. Set page title, favicon, and more. Configures the default settings of the page.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found