From 9dca1f17bf49b30b251d372764b61fa39a19693a Mon Sep 17 00:00:00 2001 From: u-e Date: Thu, 3 Jan 2019 18:08:36 +0300 Subject: [PATCH] voters routing keys fixed --- src/components/postCard/container/postCardContainer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/postCard/container/postCardContainer.js b/src/components/postCard/container/postCardContainer.js index 4d02abdb4..595af76f1 100644 --- a/src/components/postCard/container/postCardContainer.js +++ b/src/components/postCard/container/postCardContainer.js @@ -58,13 +58,14 @@ class PostCardContainer extends PureComponent { }; _handleOnVotersPress = (activeVotes) => { - const { navigation } = this.props; + const { navigation, content } = this.props; navigation.navigate({ routeName: ROUTES.SCREENS.VOTERS, params: { activeVotes, }, + key: content.permlink, }); };