-
Notifications
You must be signed in to change notification settings - Fork 1.5k
GraphQLConf 2025 — allow limited HTML in session descriptions #2097
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
Conversation
@hasparus is attempting to deploy a commit to the The GraphQL Foundation Team on Vercel. A member of the Team first needs to authorize it. |
session={session} | ||
className="-mx-px -mb-px last:xl:pb-24" | ||
/> | ||
{!!session.speakers?.length && ( |
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.
The cruise doesn't have speakers.
<PinIcon className="size-4 text-pri-base [@container(width<240px)]:hidden" /> | ||
{session.venue} | ||
</span> | ||
{session.venue && ( |
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.
The cruise doesn't have a venue.
@@ -172,7 +173,7 @@ function AddToCalendarLink({ | |||
title: eventTitle, | |||
start: session.event_start, | |||
end: session.event_end, | |||
description: session.description, | |||
description: stripHtml(session.description).result, |
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.
As session.description
can have HTML now we need to get rid of it for calendar events.
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Description
We now render some HTML tags included in session descriptions.