Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Fix Icon library Jquery CSP problem #749

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
not specifying the jquery version
  • Loading branch information
kingjia90 authored Nov 15, 2024
commit 767846a85ba4d827976f28339f3fe0312da0dafc
2 changes: 1 addition & 1 deletion src/Security/ContentSecurityPolicyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ContentSecurityPolicyHandler implements LoggerAwareInterface
],
self::SCRIPT_OPT => [
'https://buttons.github.io/buttons.js', // GitHub star button on login page
'https://code.jquery.com/jquery-3.7.1.min.js', // jQuery for the icon library
'https://code.jquery.com/', // jQuery for the icon library
],
self::FRAME_OPT => [
'https://www.youtube-nocookie.com/', // Video preview thumbnail for YouTube
Expand Down
Loading