-
Notifications
You must be signed in to change notification settings - Fork 14
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
Revert "Staging to Production" #1489
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -9,7 +9,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (phaseWinner.overview_image_path) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<img | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
src={`${imageBase}${encodeURIComponent(phaseWinner.overview_image_path)}`} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
src={imageBase + phaseWinner.overview_image_path} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
alt="Phase Winner image" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
title="Phase Winner image" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
className="phase-winner-image mt-3" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -23,7 +23,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const {id, image_path, name, place_title} = winner | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div key={id} className="d-flex flex-row align-items-center usa-tbm-1rem"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{image_path && (<img src={`${imageBase}${encodeURIComponent(winner.image_path)}`} alt="winner image" title="winner image" className="phase-winner-image me-3" />)} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{image_path && <img src={imageBase + winner.image_path} alt="winner image" title="winner image" className="phase-winner-image me-3" />} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Check warning Code scanning / CodeQL DOM text reinterpreted as HTML Medium DOM text Error loading related location Loading DOM text Error loading related location Loading
Copilot Autofix AI about 1 month ago To fix the problem, we need to ensure that the
Suggested changeset
2
assets/client/src/components/challenge_tabs/Winners.js
assets/package.json
Outside changed files
This fix introduces these dependencies
Copilot is powered by AI and may make mistakes. Always verify output.
Refresh and try again.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{name && <p>{name}</p>} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{place_title && <p>{` - ${place_title}`}</p>} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
"create-react-app": "^5.0.1", | ||
"file-loader": "^6.2.0", | ||
"inputmask": "^5.0.5", | ||
"jquery": "^3.7.1", | ||
"jquery": "^3.3.1", | ||
"moment": "^2.27.0", | ||
"moment-timezone": "^0.5.31", | ||
"node-quill-converter": "^0.3.3", | ||
|
@@ -59,4 +59,4 @@ | |
"webpack": "^5.76.0", | ||
"webpack-cli": "^4.7.0" | ||
} | ||
} | ||
} |
Check warning
Code scanning / CodeQL
DOM text reinterpreted as HTML Medium
Copilot Autofix AI about 1 month ago
To fix the problem, we need to ensure that the
imageBase
value is properly sanitized before it is used in thesrc
attribute of theimg
tag. This can be achieved by validating that theimageBase
is a well-formed URL and does not contain any malicious content.validator
.imageBase
value before using it in thesrc
attribute.imageBase
value is not valid, use a default safe value or handle the error appropriately.