I built an app with standard dcc.Loading components:
dcc.Loading(
dcc.Graph(
id='conversion_experiment',
),
which is working. However, when I try to add an external stylesheet for bootstrap (eg for dash-bootstrap-components), the loading animation stops working:
This works:
external_stylesheets = [
‘https://codepen.io/chriddyp/pen/bWLwgP.css’,
]
This breaks the dcc.Loading:
external_stylesheets = [
‘https://codepen.io/chriddyp/pen/bWLwgP.css’,
“https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css”
]
Anyone know what could be the issue ? Thanks!!