From 222541149dc47b1c01b96eb4d535bbbe5fde6236 Mon Sep 17 00:00:00 2001 From: Takaharu Nakamura Date: Sun, 28 Apr 2024 09:57:45 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=99=82=E9=96=93=E3=82=9224=E6=99=82?= =?UTF-8?q?=E9=96=93=E8=A1=A8=E8=A8=98=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/committee/forms/[form_id]/FormAnswerList.tsx | 2 +- src/app/committee/projects/[project_id]/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/committee/forms/[form_id]/FormAnswerList.tsx b/src/app/committee/forms/[form_id]/FormAnswerList.tsx index 48c3365d..6329c8f9 100644 --- a/src/app/committee/forms/[form_id]/FormAnswerList.tsx +++ b/src/app/committee/forms/[form_id]/FormAnswerList.tsx @@ -39,7 +39,7 @@ export const FormAnswerList: React.FC<{ answers: components["schemas"]["FormAnsw borderBottom: "2px solid token(colors.gray.300)", })}>
- {dayjs(answer.updated_at).format("MM/DD hh:mm")} + {dayjs(answer.updated_at).format("MM/DD HH:mm")} {answer.project_title}
diff --git a/src/app/committee/projects/[project_id]/page.tsx b/src/app/committee/projects/[project_id]/page.tsx index 04d9d71b..42901e7f 100644 --- a/src/app/committee/projects/[project_id]/page.tsx +++ b/src/app/committee/projects/[project_id]/page.tsx @@ -53,7 +53,7 @@ const FormAnswerItem: React.FC<{ answer: components["schemas"]["FormAnswerSummar borderBottom: "2px solid token(colors.gray.300)", })}>
- {dayjs(answer.updated_at).format("MM/DD hh:mm")} + {dayjs(answer.updated_at).format("MM/DD HH:mm")} {form.title}