Skip to content

Commit

Permalink
Merge pull request getredash#19 from codygo-solutions/fix-fonts-in-pu…
Browse files Browse the repository at this point in the history
…blic-dashboard

Fix fonts in public dashboard
  • Loading branch information
danikenan committed Aug 25, 2023
2 parents 2cc9125 + fe40282 commit d65cac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/settings/__init__.py
Expand Up @@ -140,7 +140,7 @@
# for more information. E.g.:
CONTENT_SECURITY_POLICY = os.environ.get(
"REDASH_CONTENT_SECURITY_POLICY",
"default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; font-src 'self' data:; img-src 'self' http: https: data: blob:; object-src 'none'; frame-ancestors 'none'; frame-src redash.io;",
"default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; font-src 'self' data:; img-src 'self' http: https: data: blob:; object-src 'none'; frame-ancestors 'none'; frame-src redash.io; style-src 'self' https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https://fonts.gstatic.com 'unsafe-inline';",
)
CONTENT_SECURITY_POLICY_REPORT_URI = os.environ.get(
"REDASH_CONTENT_SECURITY_POLICY_REPORT_URI", ""
Expand Down

0 comments on commit d65cac5

Please sign in to comment.