Skip to content

Commit

Permalink
fix: 時間を24時間表記に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
appare45 committed Apr 28, 2024
1 parent d3e7825 commit 2225411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/committee/forms/[form_id]/FormAnswerList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const FormAnswerList: React.FC<{ answers: components["schemas"]["FormAnsw
borderBottom: "2px solid token(colors.gray.300)",
})}>
<div className={hstack({ gap: 5 })}>
<span>{dayjs(answer.updated_at).format("MM/DD hh:mm")}</span>
<span>{dayjs(answer.updated_at).format("MM/DD HH:mm")}</span>
<span className={css({ fontWeight: "bold" })}>{answer.project_title}</span>
</div>
<SubmitStatusBadge status={status} />
Expand Down
2 changes: 1 addition & 1 deletion src/app/committee/projects/[project_id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const FormAnswerItem: React.FC<{ answer: components["schemas"]["FormAnswerSummar
borderBottom: "2px solid token(colors.gray.300)",
})}>
<div className={hstack({ gap: 5 })}>
<span>{dayjs(answer.updated_at).format("MM/DD hh:mm")}</span>
<span>{dayjs(answer.updated_at).format("MM/DD HH:mm")}</span>
<span className={css({ fontWeight: "bold" })}>{form.title}</span>
</div>
<SubmitStatusBadge status={status} />
Expand Down

0 comments on commit 2225411

Please sign in to comment.