Skip to content

Commit 309a08e

Browse files
author
xhlulu
committed
Update title for another 15 apps
Former-commit-id: 3c2e08b
1 parent 24d2a6c commit 309a08e

15 files changed

Lines changed: 15 additions & 0 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-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-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-medical-provider-charges/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
}
1919
],
2020
)
21+
app.title = "Medical Provider Charges"
2122
server = app.server
2223

2324
app.config["suppress_callback_exceptions"] = True

apps/dash-multipage-report/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
color_b = "#F8F8FF"
3737

3838
app = dash.Dash(__name__)
39+
app.title = "Multipage Report"
3940

4041
server = app.server
4142

apps/dash-object-detection/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 = "Object Detection Explorer"
1819
server = app.server
1920
app.config.suppress_callback_exceptions = True
2021

apps/dash-peaky-finders/peaky_app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
app = dash.Dash(
3232
external_stylesheets=[dbc.themes.LUX], suppress_callback_exceptions=True
3333
)
34+
app.title = "US Electric Grid Forecasting"
3435
server = app.server
3536

3637
"""Homepage"""

apps/dash-phylogeny/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
)
1717

1818
app = dash.Dash(__name__)
19+
app.title = "Phylogeny Tree Explorer"
1920
server = app.server
2021

2122
virus_name = "measles"

0 commit comments

Comments
 (0)