Skip to content

Commit 4513cc2

Browse files
committed
Remove default favicon from example docs and suppress 'Updating...' title
1 parent 75f4c0f commit 4513cc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/examples/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
INDEX_STRING_TEMPLATE = """{% extends "example.html" %}
2424
{% block head %}
2525
{{ super() }}
26-
{{ "{%metas%}{%css%}{%favicon%}" }}
26+
{{ "{%metas%}{%css%}" }}
2727
{% endblock %}
2828
{% block title %}
2929
<title>{{ "{%title%}" }}</title>
@@ -75,6 +75,7 @@ def build_app_from_example(app, name, code, code_link, show_warning=False):
7575
requests_pathname_prefix=f"/examples/{name}/",
7676
serve_locally=False,
7777
index_string=template.replace("<CODE>", code),
78+
update_title=None,
7879
)
7980
new_app.title = f"{name.capitalize().replace('-', ' ')} - dbc examples"
8081
new_app.layout = app.layout

0 commit comments

Comments
 (0)