From b75bf84b96c638cb2ea65958f94b75b2ace8bd0a Mon Sep 17 00:00:00 2001 From: seorang42 Date: Wed, 19 Feb 2025 22:10:59 +0900 Subject: [PATCH] =?UTF-8?q?:bug:=20[fix]=20:=20=EB=82=B4=20=EC=9A=94?= =?UTF-8?q?=EC=B2=AD=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=95=84=20=EC=82=AC=EC=A7=84=20=EB=AF=B8=ED=91=9C=EC=8B=9C=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/my-request/MyRequestListCard.vue | 2 +- src/types/user.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/my-request/MyRequestListCard.vue b/src/components/my-request/MyRequestListCard.vue index 5f0c200..47baf10 100644 --- a/src/components/my-request/MyRequestListCard.vue +++ b/src/components/my-request/MyRequestListCard.vue @@ -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 } ] diff --git a/src/types/user.ts b/src/types/user.ts index 35d8d7a..11d20eb 100644 --- a/src/types/user.ts +++ b/src/types/user.ts @@ -8,7 +8,7 @@ export interface MyRequestListData { mainCategoryName: string categoryName: string title: string - processorImg?: string + processorUrl?: string processorName?: string taskStatus: Status finishedAt?: string