diff --git a/superset/config.py b/superset/config.py index 63b2e0dba..28e3d4fd5 100644 --- a/superset/config.py +++ b/superset/config.py @@ -1423,7 +1423,7 @@ TALISMAN_ENABLED = utils.cast_to_boolean(os.environ.get("TALISMAN_ENABLED", True TALISMAN_CONFIG = { "content_security_policy": { "default-src": ["'self'"], - "img-src": ["'self'", "data:"], + "img-src": ["'self'", "blob:", "data:"], "worker-src": ["'self'", "blob:"], "connect-src": [ "'self'", @@ -1445,7 +1445,7 @@ TALISMAN_CONFIG = { TALISMAN_DEV_CONFIG = { "content_security_policy": { "default-src": ["'self'"], - "img-src": ["'self'", "data:"], + "img-src": ["'self'", "blob:", "data:"], "worker-src": ["'self'", "blob:"], "connect-src": [ "'self'",