summaryrefslogtreecommitdiffstats
path: root/pages/total.py
diff options
context:
space:
mode:
authorLukas Metzger2020-05-23 15:08:14 +0200
committerLukas Metzger2020-05-23 15:08:14 +0200
commit751f2df144e66041ce10bd79a67eb5b86df28478 (patch)
tree3aef7922de369865b6f7e0cab000defe27ab7fcf /pages/total.py
parentAdded machine information and some minor fixes (diff)
downloadbwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.tar.gz
bwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.tar.xz
bwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.zip
Added loading indication and minor ui fixes
Diffstat (limited to 'pages/total.py')
-rw-r--r--pages/total.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/total.py b/pages/total.py
index f4d6c90..c22170a 100644
--- a/pages/total.py
+++ b/pages/total.py
@@ -44,16 +44,16 @@ def layout():
])
]),
dbc.Row([dbc.Col([
- dcc.Graph(id='total-graph-times')
+ dcc.Loading(dcc.Graph(id='total-graph-times'))
])]),
dbc.Row([dbc.Col([
- dcc.Graph(id='total-graph-session-length')
+ dcc.Loading(dcc.Graph(id='total-graph-session-length'))
])]),
dbc.Row([dbc.Col([
- dcc.Graph(id='total-graph-sessions')
+ dcc.Loading(dcc.Graph(id='total-graph-sessions'))
])]),
dbc.Row([dbc.Col([
- dcc.Graph(id='total-graph-users')
+ dcc.Loading(dcc.Graph(id='total-graph-users'))
])])
])