aboutsummaryrefslogtreecommitdiff
path: root/src/BBSThread.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/BBSThread.js')
-rw-r--r--src/BBSThread.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BBSThread.js b/src/BBSThread.js
index dba48df..dd00a72 100644
--- a/src/BBSThread.js
+++ b/src/BBSThread.js
@@ -74,11 +74,11 @@ class BBSThread extends Component {
</Header.Subheader>
</Header>
- {posts.map(post =>
+ {posts.map((post, index) =>
post.IS_DELETED === 0 ?
(<Segment.Group>
<Header as="h5" attached>
- {post.name}
+ #{index + 1} {post.name}
<Header.Subheader className="inlineSubHeader">
<Moment fromNow unix locale="es" date={post.timestamp} />
</Header.Subheader>