Skip to content

Commit

Permalink
fix: follow endlines in session description + fix swup link on calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
domysh committed Jul 30, 2024
1 parent 836b7a7 commit 83bd23f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/Common/AddToCalendar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ const appleLink = `data:text/calendar;charset=utf8, BEGIN:VCALENDAR%0AVERSION:2.
</div>
<div class="dropdown-content">
<div class="calendar-dropdown-element">
<a href={googleLink} target="_blank">Google</a>
<a href={googleLink} data-no-swup target="_blank">Google</a>
</div>
<div class="calendar-dropdown-element">
<a href={outlookLink} target="_blank">Outlook</a>
<a href={outlookLink} data-no-swup target="_blank">Outlook</a>
</div>
<div class="calendar-dropdown-element">
<a href={appleLink} target="_blank">Apple</a>
<a href={appleLink} data-no-swup target="_blank">Apple</a>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion src/pages/sessions/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const pageDesc = entry.description;
}
</div>

<p>{entry.description}</p>
<p style="white-space: pre-wrap;">{entry.description}</p>

<div class="mt-10">
<p class="text-3xl mb-6">Speakers</p>
Expand Down

0 comments on commit 83bd23f

Please sign in to comment.