summaryrefslogtreecommitdiffhomepage
path: root/services/blog/nuldoc-src/pages/PostListPage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'services/blog/nuldoc-src/pages/PostListPage.tsx')
-rw-r--r--services/blog/nuldoc-src/pages/PostListPage.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/blog/nuldoc-src/pages/PostListPage.tsx b/services/blog/nuldoc-src/pages/PostListPage.tsx
index 054955e6..b825f69d 100644
--- a/services/blog/nuldoc-src/pages/PostListPage.tsx
+++ b/services/blog/nuldoc-src/pages/PostListPage.tsx
@@ -39,7 +39,9 @@ export default function PostListPage(
basePath="/posts/"
/>
- {posts.map((post) => <PostPageEntry post={post} key={post.uuid} />)}
+ {posts.map((post) => (
+ <PostPageEntry post={post} config={config} key={post.uuid} />
+ ))}
<Pagination
currentPage={currentPage}