-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
723 multiple fixes #724
723 multiple fixes #724
Changes from 5 commits
7748c40
6bd303e
69265ec
ee9d280
354700a
7849fdf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -56,18 +56,31 @@ function Event() { | |||||||||||||||||||||||||||||||
<> | ||||||||||||||||||||||||||||||||
<Onboarding steps={eventSteps} type="event" /> | ||||||||||||||||||||||||||||||||
<FlexColumn $gap="2rem" className="event"> | ||||||||||||||||||||||||||||||||
<BackButton /> | ||||||||||||||||||||||||||||||||
<section className="flex flex-col gap-4"> | ||||||||||||||||||||||||||||||||
<Subtitle>{event?.name}</Subtitle> | ||||||||||||||||||||||||||||||||
{event?.description && ( | ||||||||||||||||||||||||||||||||
<Markdown | ||||||||||||||||||||||||||||||||
components={{ | ||||||||||||||||||||||||||||||||
a: ({ node, ...props }) => <Link to={props.href ?? ''}>{props.children}</Link>, | ||||||||||||||||||||||||||||||||
p: ({ node, ...props }) => <Body>{props.children}</Body>, | ||||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||
{event.description} | ||||||||||||||||||||||||||||||||
</Markdown> | ||||||||||||||||||||||||||||||||
<section className="grid grid-cols-3 gap-x-4"> | ||||||||||||||||||||||||||||||||
<div className="col-span-2 flex flex-col gap-4"> | ||||||||||||||||||||||||||||||||
<BackButton /> | ||||||||||||||||||||||||||||||||
<Subtitle>{event?.name}</Subtitle> | ||||||||||||||||||||||||||||||||
{event?.description && ( | ||||||||||||||||||||||||||||||||
<div> | ||||||||||||||||||||||||||||||||
<Markdown | ||||||||||||||||||||||||||||||||
components={{ | ||||||||||||||||||||||||||||||||
a: ({ node, ...props }) => <Link to={props.href ?? ''}>{props.children}</Link>, | ||||||||||||||||||||||||||||||||
p: ({ node, ...props }) => <Body>{props.children}</Body>, | ||||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||
{event.description} | ||||||||||||||||||||||||||||||||
</Markdown> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
{event?.imageUrl && ( | ||||||||||||||||||||||||||||||||
<div className="col-span-1"> | ||||||||||||||||||||||||||||||||
<img | ||||||||||||||||||||||||||||||||
src={event?.imageUrl} | ||||||||||||||||||||||||||||||||
alt={`${event.name} image`} | ||||||||||||||||||||||||||||||||
className="h-full w-full object-cover object-center" | ||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||
Comment on lines
+76
to
+83
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure proper handling of missing image data. The code assumes that - {event?.imageUrl && (
- <div className="col-span-1">
- <img
- src={event?.imageUrl}
- alt={`${event.name} image`}
- className="h-full w-full object-cover object-center"
- />
- </div>
- )}
+ <div className="col-span-1">
+ <img
+ src={event?.imageUrl || '/path/to/placeholder/image.jpg'}
+ alt={event ? `${event.name} image` : 'Placeholder image'}
+ className="h-full w-full object-cover object-center"
+ />
+ </div> Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||
</section> | ||||||||||||||||||||||||||||||||
<section className="flex w-full flex-col justify-between gap-2 md:flex-row md:items-center"> | ||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure proper handling of missing event data.
The code assumes that
event
is always defined. Add a fallback or loading state to handle cases whereevent
is undefined.Committable suggestion