Skip to content

Commit 4c83159

Browse files
committed
💄 [design] : 상태 표시칸 크기 증가
1 parent 6df5900 commit 4c83159

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/components/my-request/MyRequestListCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const myRequestTabList: ListCardProps[] = [
4949
{ content: info.categoryName, width: 80 },
5050
{ content: info.title },
5151
{ content: info.processorName, width: 120, profileImg: info.processorImg },
52-
{ content: info.taskStatus, width: 64, isStatus: true },
52+
{ content: info.taskStatus, width: 80, isStatus: true },
5353
{ content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 }
5454
]
5555
</script>

src/components/my-task/MyTaskListCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const myRequestTabList: ListCardProps[] = [
4848
{ content: info.categoryName, width: 80 },
4949
{ content: info.title },
5050
{ content: info.requesterName, width: 120, profileImg: info.requesterImg },
51-
{ content: info.taskStatus, width: 64, isStatus: true },
51+
{ content: info.taskStatus, width: 80, isStatus: true },
5252
{ content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 }
5353
]
5454
</script>

src/components/request-history/RequestHistoryListCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const myRequestTabList: ListCardProps[] = [
4949
{ content: info.title },
5050
{ content: info.requesterName, width: 120, profileImg: info.requesterImg },
5151
{ content: info.processorName, width: 120, profileImg: info.processorImg },
52-
{ content: info.taskStatus, width: 64, isStatus: true },
52+
{ content: info.taskStatus, width: 80, isStatus: true },
5353
{ content: info.finishedAt ? formatDate(info.finishedAt) : '', width: 80 }
5454
]
5555
</script>

src/constants/manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const REQUEST_HISTORY_LIST_BAR_TAB: ListBarTabProps[] = [
1818
{ content: '제목' },
1919
{ content: '요청자', width: 120 },
2020
{ content: '담당자', width: 120 },
21-
{ content: '상태', width: 64 },
21+
{ content: '상태', width: 80 },
2222
{ content: '종료일', width: 80, sortBy: 'FINISHED_AT' }
2323
]
2424

@@ -29,7 +29,7 @@ export const MY_TASK_LIST_BAR_TAB: ListBarTabProps[] = [
2929
{ content: '2차 카테고리', width: 80 },
3030
{ content: '제목' },
3131
{ content: '요청자', width: 120 },
32-
{ content: '상태', width: 64 },
32+
{ content: '상태', width: 80 },
3333
{ content: '종료일', width: 80, sortBy: 'FINISHED_AT' }
3434
]
3535

src/constants/user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const MY_REQUEST_LIST_BAR_TAB: ListBarTabProps[] = [
88
{ content: '2차 카테고리', width: 80 },
99
{ content: '제목' },
1010
{ content: '담당자', width: 120 },
11-
{ content: '상태', width: 64 },
11+
{ content: '상태', width: 80 },
1212
{ content: '종료일', width: 80, sortBy: 'FINISHED_AT' }
1313
]
1414

0 commit comments

Comments
 (0)