Skip to content

Commit

Permalink
fix: accepted workshops in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
surajgoraya committed Sep 8, 2024
1 parent 7aac4ba commit f7a6827
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/app/lib/config/navigation.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const MENU_DATA = [
href: null,
children: [
{ title: "Accepted Papers", href: "/program/accepted-papers/" },
{ title: "Accepted Workshops", href: "/program/accepted-workshops/" },
],
},
{
Expand Down
8 changes: 5 additions & 3 deletions src/app/program/accepted-workshops/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ function WorkshopSection({
{placeDetails}
</p>
<p>
<strong>{`Abstract `}&mdash;</strong>
<strong>{`Abstract: `}</strong>
</p>
<blockquote className="pl-4 mt-4 border-l-4 border-theme-dark">
{abstract}
<p>{abstract}</p>
</blockquote>
</div>
</div>
Expand Down Expand Up @@ -85,7 +85,9 @@ export default function AcceptedWorkshops() {
<h2 id="list-of-workshops">List of Workshops</h2>
<ul className="mb-8">
{ACCEPTED_WORKSHOPS.map((w, i) => (
<li key={`workshop-li-${i}`}><Link href={`#${makeAttributeSafe(w.title)}`}>{w.title}</Link></li>
<li key={`workshop-li-${i}`}>
<Link href={`#${makeAttributeSafe(w.title)}`}>{w.title}</Link>
</li>
))}
</ul>
{ACCEPTED_WORKSHOPS.map((w, i) => (
Expand Down

0 comments on commit f7a6827

Please sign in to comment.