Skip to content

Commit

Permalink
👍 イベント詳細ページの見出しをアンカーリンクに
Browse files Browse the repository at this point in the history
  • Loading branch information
haruyuki-16278 committed Feb 25, 2024
1 parent 11a3d68 commit bd7e232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/event/[hash].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Event(event: PageProps<EventItem>) {
</section>

<section class="mt-4">
<h3 class="text-xl font-bold">参加者一覧</h3>
<h3 id="joinners" class="text-xl font-bold">参加者一覧</h3>
{item.joinners !== undefined
? (
<ul class="mt-2">
Expand All @@ -60,7 +60,7 @@ export default function Event(event: PageProps<EventItem>) {
</section>

<section class="mt-4">
<h3 class="text-xl font-bold">コメント</h3>
<h3 id="comments" class="text-xl font-bold">コメント</h3>
{item.comments !== undefined
? (
<ul class="mt-2">
Expand Down

0 comments on commit bd7e232

Please sign in to comment.