Skip to content

Commit

Permalink
Merge pull request #80 from pyconjp/develop
Browse files Browse the repository at this point in the history
Release 2024/09/04
  • Loading branch information
k-nakamura authored Sep 4, 2024
2 parents cff2575 + d0e7806 commit 7f30f41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/elements/TimetableBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default async function TimetableBody({lang, date, talks, events, categori
{
talk.is_event
? <div key={index}
className={`lg:text-base bg-secondary-50 flex items-center justify-center flex-col gap-1 my-2 mx-0.5 lg:my-0.5 px-2 py-4 ${EVENT_TRACK_LIST[talk.slot.room_id].class} lg:row-start-[${(talk.start_minute / 5) + 2}] lg:row-span-${(talk.end_minute - talk.start_minute) / 5}`}>
className={`lg:text-base bg-secondary-50 flex items-center justify-center text-center flex-col gap-1 my-2 mx-0.5 lg:my-0.5 px-2 py-4 ${EVENT_TRACK_LIST[talk.slot.room_id].class} lg:row-start-[${(talk.start_minute / 5) + 2}] lg:row-span-${(talk.end_minute - talk.start_minute) / 5}`}>
<div className='font-bold'>{talk.title}</div>
<div className='flex lg:hidden flex-row gap-0.5 items-center text-xs'>
<MapPinIcon className='w-3 h-3'/>
Expand Down
4 changes: 2 additions & 2 deletions src/data/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const conferenceEvents: ConferenceEvent[] = [
{
code: 'keynote1',
speakers: [],
title: 'Keynote',
title: 'Keynote (James Powell)',
slot: {
room_id: 2,
start: '2024-09-27T10:30:00+09:00',
Expand Down Expand Up @@ -333,7 +333,7 @@ export const conferenceEvents: ConferenceEvent[] = [
{
code: 'keynote2',
speakers: [],
title: 'Keynote',
title: 'Keynote (Atsuo Ishimoto)',
slot: {
room_id: 2,
start: '2024-09-28T17:30:00+09:00',
Expand Down

0 comments on commit 7f30f41

Please sign in to comment.