Skip to content

fix(PM-1584): title field too narrow #1176

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

Merged
merged 1 commit into from
Aug 4, 2025
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion src/apps/copilots/src/pages/copilot-requests/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ const CopilotRequestsPage: FC = () => {
className: styles.opportunityTitle,
label: 'Title',
propertyName: 'opportunityTitle',
type: 'text',
renderer: (copilotRequest: CopilotRequest) => (
<div className={styles.title}>{copilotRequest.opportunityTitle}</div>
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 fallback or default text in case copilotRequest.opportunityTitle is undefined or null to prevent rendering issues.

Copy link

Choose a reason for hiding this comment

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

Ensure that the styles.title class includes responsive design considerations to address the issue of the title field being too narrow on mobile resolutions.

),
type: 'element',
},
{
label: 'Type',
Expand Down