aboutsummaryrefslogtreecommitdiff
path: root/src/Board.js
diff options
context:
space:
mode:
authorLibravatar Renard 2019-09-16 16:18:47 -0300
committerLibravatar Renard 2019-09-16 16:18:47 -0300
commit6a1d09aede3440a367ff575212eef97232f4369d (patch)
tree2e8f279a4957cf4f2ccebb00e2496c1d58f8b3f3 /src/Board.js
parentd0ccad14a773a5fce0efa2186453c73f3d1f9e9f (diff)
downloadbai-client-6a1d09aede3440a367ff575212eef97232f4369d.tar.gz
bai-client-6a1d09aede3440a367ff575212eef97232f4369d.tar.xz
bai-client-6a1d09aede3440a367ff575212eef97232f4369d.zip
Post ID segĂșn tipo de board
Diffstat (limited to 'src/Board.js')
-rw-r--r--src/Board.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Board.js b/src/Board.js
index 1e1d8b5..b88f160 100644
--- a/src/Board.js
+++ b/src/Board.js
@@ -101,7 +101,7 @@ class Board extends Component {
post={thread}
locked={thread.locked}
threadId={thread.id}
- dir={this.props.dir}
+ currentBoard={currentBoard}
/>
<Divider />
{thread.replies.map((reply, index, replies) => (
@@ -110,8 +110,8 @@ class Board extends Component {
post={reply}
locked={thread.locked}
threadId={thread.id}
- dir={this.props.dir}
key={index}
+ currentBoard={currentBoard}
/>
))}
</Comment.Group>