summaryrefslogtreecommitdiffstats
path: root/pages/machines.py
diff options
context:
space:
mode:
Diffstat (limited to 'pages/machines.py')
-rw-r--r--pages/machines.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pages/machines.py b/pages/machines.py
index b750ddc..62bbfc0 100644
--- a/pages/machines.py
+++ b/pages/machines.py
@@ -45,23 +45,23 @@ def layout():
])
]),
dbc.Row([dbc.Col([
- dcc.Graph(id='machines-graph-location')
+ dcc.Loading(dcc.Graph(id='machines-graph-location'))
])]),
dbc.Row([
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-ram')
+ dcc.Loading(dcc.Graph(id='machines-graph-ram'))
]),
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-realcores')
+ dcc.Loading(dcc.Graph(id='machines-graph-realcores'))
]),
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-kvmstate')
+ dcc.Loading(dcc.Graph(id='machines-graph-kvmstate'))
]),
dbc.Col(width=12, xl=6, children=[
- dcc.Graph(id='machines-graph-cpumodel')
+ dcc.Loading(dcc.Graph(id='machines-graph-cpumodel'))
]),
dbc.Col(width=12, xl=6, children=[
- dcc.Graph(id='machines-graph-systemmodel')
+ dcc.Loading(dcc.Graph(id='machines-graph-systemmodel'))
])
])
])