Skip to content

Commit

Permalink
Fixed a possible bug with the last two plots
Browse files Browse the repository at this point in the history
Fixed a possible bug with the plots on the third section of a page, where they could overlap each other.
  • Loading branch information
maxymnaumchyk committed Dec 1, 2023
1 parent 2bde29e commit 1f9331a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/pages/packet-loss-ml.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,15 +215,15 @@ def layout(**other_unknown_query_strings):
html.Hr(className="my-2"),
html.Br(),
dcc.Loading(
html.Div(id='results-table-pl-dest-src'),
html.Div(id='results-table-pl-dest-src', style={'height':'400px'}),
style={'height': '0.5rem'}, color='#00245A')
], className="m-2", style={"padding-top": "1%"}),
dbc.Row([
html.H1(f"Daily numbers of the alarms created", className="text-center", style={"padding-top": "1%"}),
html.Hr(className="my-2"),
html.Br(),
dcc.Loading(
html.Div(id='results-table-pl-mean-dest-src'),
html.Div(id='results-table-pl-mean-dest-src', style={'height':'400px'}),
style={'height': '0.5rem'}, color='#00245A')
], className="m-2"),
], className="p-2 site boxwithshadow page-cont mb-2 g-0", align="center"),
Expand Down
4 changes: 2 additions & 2 deletions src/pages/throughput-ml.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ def layout(**other_unknown_query_strings):
html.Hr(className="my-2"),
html.Br(),
dcc.Loading(
html.Div(id='results-table-thrpt-dest-src'),
html.Div(id='results-table-thrpt-dest-src', style={'height':'400px'}),
style={'height': '0.5rem'}, color='#00245A')
], className="m-2", style={"padding-top": "1%"}),
dbc.Row([
html.H1(f"Daily numbers of the alarms created", className="text-center", style={"padding-top": "1%"}),
html.Hr(className="my-2"),
html.Br(),
dcc.Loading(
html.Div(id='results-table-thrpt-mean-dest-src'),
html.Div(id='results-table-thrpt-mean-dest-src', style={'height':'400px'}),
style={'height': '0.5rem'}, color='#00245A')
], className="m-2"),
], className="p-2 site boxwithshadow page-cont mb-2 g-0", align="center"),
Expand Down

0 comments on commit 1f9331a

Please sign in to comment.