A lot of errors are sent to the navigator console because we aren't using camel case style to the style dictionary passed to the dash elements : https://dash.plotly.com/layout
html.P("2020 © dataforgood", style={"textAlign": "center", "margin": "1px"})
Instead of:
html.P("2020 © dataforgood", style={"text-align": "center", "margin": "1px"})
Moreover, with consistent ids across the applications, we should also be able to get rid of all these dictionaries, but instead use css files.
A lot of errors are sent to the navigator console because we aren't using camel case style to the
styledictionary passed to the dash elements : https://dash.plotly.com/layoutInstead of:
Moreover, with consistent ids across the applications, we should also be able to get rid of all these dictionaries, but instead use css files.