Skip to content

Commit 774bfd7

Browse files
authored
Merge pull request #1176 from topcoder-platform/pm-1584
fix(PM-1584): title field too narrow
2 parents ef6d0cd + 1f9e9c7 commit 774bfd7

File tree

1 file changed

+4
-1
lines changed
  • src/apps/copilots/src/pages/copilot-requests

1 file changed

+4
-1
lines changed

src/apps/copilots/src/pages/copilot-requests/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,10 @@ const CopilotRequestsPage: FC = () => {
200200
className: styles.opportunityTitle,
201201
label: 'Title',
202202
propertyName: 'opportunityTitle',
203-
type: 'text',
203+
renderer: (copilotRequest: CopilotRequest) => (
204+
<div className={styles.title}>{copilotRequest.opportunityTitle}</div>
205+
),
206+
type: 'element',
204207
},
205208
{
206209
label: 'Type',

0 commit comments

Comments
 (0)