Skip to content

Commit fa22569

Browse files
committed
fix: project type column
1 parent 3377769 commit fa22569

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const CopilotRequestsPage: FC = () => {
200200
},
201201
{
202202
label: 'Type',
203-
propertyName: 'type',
203+
propertyName: 'projectType',
204204
type: 'text',
205205
},
206206
{
@@ -232,7 +232,7 @@ const CopilotRequestsPage: FC = () => {
232232
const tableData = useMemo(() => requests.map(request => ({
233233
...request,
234234
projectName: request.project?.name,
235-
type: ProjectTypeLabels[request.projectType] ?? '',
235+
projectType: ProjectTypeLabels[request.projectType] ?? '',
236236
})), [requests])
237237

238238
function loadMore(): void {

0 commit comments

Comments
 (0)