aboutsummaryrefslogtreecommitdiff
path: root/src/Thread.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Thread.js')
-rw-r--r--src/Thread.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Thread.js b/src/Thread.js
index eb9d63a..be73903 100644
--- a/src/Thread.js
+++ b/src/Thread.js
@@ -76,11 +76,7 @@ class Thread extends Component {
<Comment.Group>
{posts.map((post, index) =>
- post.IS_DELETED === 0 ?
- (<Post key={index} index={index} post={post} locked={locked} dir={this.props.dir} threadId={id} />) :
- (<Segment secondary>
- #{index} Eliminado <Moment fromNow unix locale="es" date={post.timestamp} />
- </Segment>)
+ <Post key={index} index={index} post={post} locked={locked} dir={this.props.dir} threadId={id} />
)
}
</Comment.Group>