summaryrefslogtreecommitdiffstats
path: root/src/routes/posts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/posts.rs')
-rw-r--r--src/routes/posts.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/posts.rs b/src/routes/posts.rs
index ae9ccbf..c2d9f3b 100644
--- a/src/routes/posts.rs
+++ b/src/routes/posts.rs
@@ -196,7 +196,7 @@ async fn page_post_inner(
}
<ul class={"commentList topLevel"}>
{
- post.comments.iter().map(|comment| {
+ post.replies.iter().map(|comment| {
render::rsx! {
<Comment comment={comment} base_data={&base_data} lang={&lang} />
}