Skip to content

Commit 02cd53b

Browse files
author
Xing Han Lu
authored
Merge pull request #630 from plotly/add-title
Add title to popular apps Former-commit-id: 93c1b0a
2 parents d6e38d9 + 309a08e commit 02cd53b

25 files changed

Lines changed: 31 additions & 5 deletions

File tree

apps/dash-aerosandbox/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import pandas as pd
1414

1515
app = dash.Dash(external_stylesheets=[dbc.themes.MINTY])
16+
app.title = "Aircraft CFD"
1617
server = app.server
1718

1819
app.layout = dbc.Container(

apps/dash-avs-explorer/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def Header(name, app):
2222
mapbox_token = os.getenv("MAPBOX_ACCESS_TOKEN")
2323

2424
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])
25+
app.title = "Autonomous Vehicle Visualization"
2526
server = app.server
2627

2728
STYLES = ["light", "dark", "satellite"]

apps/dash-baseball-statistics/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
external_stylesheets=[dbc.themes.SANDSTONE],
1010
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
1111
)
12+
app.title = "Baseball Historical Statistics"
1213
# set app server to variable for deployment
1314
srv = app.server
1415

apps/dash-brain-viewer/app.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
1515
)
1616

17+
app.title = "Brain Surface Viewer"
18+
1719
server = app.server
1820

1921
GITHUB_LINK = os.environ.get(

apps/dash-clinical-analytics/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
__name__,
1414
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
1515
)
16+
app.title = "Clinical Analytics Dashboard"
1617

1718
server = app.server
1819
app.config.suppress_callback_exceptions = True

apps/dash-financial-report/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
)
1414

1515
app = dash.Dash(
16-
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
16+
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}],
1717
)
18+
app.title = "Financial Report"
1819
server = app.server
1920

2021
# Describe the layout/ UI of the app

apps/dash-image-processing/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
APP_PATH = str(pathlib.Path(__file__).parent.resolve())
2727

2828
app = dash.Dash(__name__)
29+
app.title = "Image Processing App"
2930
server = app.server
3031

3132
if "BUCKET_NAME" in os.environ:

apps/dash-interest-rate/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666

6767

6868
# Define app
69-
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])
69+
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP],)
70+
app.title = "Interest Rate Modeling"
7071
server = app.server
7172
cache = Cache(
7273
app.server,

apps/dash-live-model-training/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
app = dash.Dash(
1919
__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}]
2020
)
21+
app.title = "Live Model Training"
2122

2223
server = app.server
2324
demo_mode = True

apps/dash-manufacture-spc-dashboard/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
__name__,
1616
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
1717
)
18+
app.title = "Manufacturing SPC Dashboard"
1819
server = app.server
1920
app.config["suppress_callback_exceptions"] = True
2021

0 commit comments

Comments
 (0)