Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/components/my-request/MyRequestListCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const myRequestTabList: ListCardProps[] = [
{ content: info.mainCategoryName, width: 80 },
{ content: info.categoryName, width: 80 },
{ content: info.title },
{ content: info.processorName, width: 120, profileImg: info.processorImg || '' },
{ content: info.processorName, width: 120, profileImg: info.processorUrl || '' },
{ content: info.taskStatus, width: 80, isStatus: true },
{ content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 }
]
Expand Down
2 changes: 1 addition & 1 deletion src/types/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface MyRequestListData {
mainCategoryName: string
categoryName: string
title: string
processorImg?: string
processorUrl?: string
processorName?: string
taskStatus: Status
finishedAt?: string
Expand Down