Skip to content

UI bugs: Fix font color, preserve line breaks #1177

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

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

himaniraghav3
Copy link
Collaborator

@himaniraghav3 himaniraghav3 requested a review from kkartunov August 5, 2025 06:19
{props.opportunity?.overview}
</p>
{props.opportunity?.overview && (
<div dangerouslySetInnerHTML={{
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using dangerouslySetInnerHTML can expose the application to XSS attacks if the HTML content is not properly sanitized. Ensure that props.opportunity.overview is sanitized before rendering it in this way.

@@ -97,4 +97,8 @@ $gradient: linear-gradient(
margin-right: $sp-1;
}
}

.datepicker input{
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a space before the opening curly brace for consistency with the rest of the file's style.


.datepicker input{
color: black;
}
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a good practice to ensure there is a newline at the end of the file to avoid potential issues with some tools and version control systems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant