Skip to content

Commit

Permalink
fix: display original work title in square brackets (refs #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstadler committed Sep 23, 2024
1 parent 296537a commit b51c96d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions app/publication/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,13 @@ export default async function PublicationPage(props: PublicationPageProps) {
}, [])
.join(",")
: null}
</sup>
</sup>{" "}
[<BernhardWorkLink key={t.work.id} work={t.work} />]
</>
);
})}
</InlineList>
</p>
<p>
<InlineList separator=" / ">
{pub.contains.map((t) => {
return <BernhardWorkLink key={t.work.id} work={t.work} />;
})}
</InlineList>
</p>
</div>
</div>

Expand Down

0 comments on commit b51c96d

Please sign in to comment.