Skip to content

Commit 9c74c76

Browse files
authored
Merge pull request #217 from TaskFlow-CLAP/CLAP-489
CLAP-489 내 요청 페이지 프로필 사진 미표시 오류 수정
2 parents b9407bd + b75bf84 commit 9c74c76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/my-request/MyRequestListCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const myRequestTabList: ListCardProps[] = [
4747
{ content: info.mainCategoryName, width: 80 },
4848
{ content: info.categoryName, width: 80 },
4949
{ content: info.title },
50-
{ content: info.processorName, width: 120, profileImg: info.processorImg || '' },
50+
{ content: info.processorName, width: 120, profileImg: info.processorUrl || '' },
5151
{ content: info.taskStatus, width: 80, isStatus: true },
5252
{ content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 }
5353
]

src/types/user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface MyRequestListData {
88
mainCategoryName: string
99
categoryName: string
1010
title: string
11-
processorImg?: string
11+
processorUrl?: string
1212
processorName?: string
1313
taskStatus: Status
1414
finishedAt?: string

0 commit comments

Comments
 (0)