Nick Day

Results 5 comments of Nick Day

Are you using Zappa? Had the same issue, fix was... `"transport": "raven.transport.requests.RequestsHTTPTransport"` in your RAVEN_CONFIG. In your `zappa_settings.json` you want `"app_function": "project.wsgi"` going to your Django `wsgi.py` file. And in...

@ayobamiseun I had the same issue. You need to apply `SecondaryBackground` as a theme override, e.g. to change it to white: ``` embeddedDashboardExperience.setThemeOverride({ UIColorPalette: { SecondaryBackground: '#FFFFFF', }, }); ```...

`setThemeOverride` is simply a method on your `EmbeddedDashboard` instance - so `newEmbeddedDashboard.setThemeOverride(...)` should do it.

I had this same issue, and got round it by having a `functionUpdate.sh` shell script like this: ``` echo "Compiling GraphQL..." amplify api gql-compile echo "Generating GraphQL statements..." amplify codegen...

Hi @sonals-amazon thanks for your response. I had already tried embedding the dashboard with the param already initialised in `contentOptions` - the initial value from `contentOptions` is displayed, but any...