Skip to content

Commit

Permalink
Update RecentNotes.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
8bitgentleman committed Mar 8, 2024
1 parent fe8f44d commit 134c227
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quartz/components/RecentNotes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ export default ((userOpts?: Partial<Options>) => {
{pages.slice(0, opts.limit).map((page) => {
const title = page.frontmatter?.title
const tags = page.frontmatter?.tags ?? []
const status = page.frontmatter?.status ?? ""

return (
<li class="recent-li">
<div class="section">
<div class="desc">
<h4>
<h4 status={status}>
<a href={resolveRelative(fileData.slug!, page.slug!)} class="internal">
{title}
</a>
Expand Down

0 comments on commit 134c227

Please sign in to comment.