Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

fixed bugs (probably from API changes) #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions dash-tabs-and-upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
if not vertical:
app.layout = html.Div([
dcc.Tabs(
tabs=[
{'label': 'Market Value', 'value': 1},
{'label': 'Usage Over Time', 'value': 2},
{'label': 'Predictions', 'value': 3},
{'label': 'Target #', 'value': 4},
children=[
dcc.Tab(label='Market Value', value="1"),
dcc.Tab(label='Usage Over Time', value="2"),
dcc.Tab(label='Predictions', value="3"),
dcc.Tab(label='Target #', value="4"),
],
value=3,
value="3",
id='tabs',
vertical=vertical
),
Expand All @@ -43,13 +43,13 @@
app.layout = html.Div([
html.Div(
dcc.Tabs(
tabs=[
{'label': 'Market Value', 'value': 1},
{'label': 'Usage Over Time', 'value': 2},
{'label': 'Predictions', 'value': 3},
{'label': 'Target #', 'value': 4},
children=[
dcc.Tab(label='Market Value', value="1"),
dcc.Tab(label='Usage Over Time', value="2"),
dcc.Tab(label='Predictions', value="3"),
dcc.Tab(label='Target #', value="4"),
],
value=3,
value="3",
id='tabs',
vertical=vertical,
style={
Expand Down