From eebdd8f8c3dbe9d71eda1e575d725c4aeed8d3f9 Mon Sep 17 00:00:00 2001 From: u-e Date: Mon, 17 Dec 2018 15:58:01 +0300 Subject: [PATCH] updated a bit --- src/components/comments/view/commentsView.js | 1 + src/components/postButton/view/postButtonsForAndroid.js | 1 - src/utils/clipboard.js | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/comments/view/commentsView.js b/src/components/comments/view/commentsView.js index 130774d5d..cea9e68aa 100644 --- a/src/components/comments/view/commentsView.js +++ b/src/components/comments/view/commentsView.js @@ -88,6 +88,7 @@ class CommentsView extends Component { avatarSize={avatarSize || 16} author={item.author} permlink={item.permlink} + commentCount={item.children} /> )} diff --git a/src/components/postButton/view/postButtonsForAndroid.js b/src/components/postButton/view/postButtonsForAndroid.js index 81f1e62c8..e2d82e3b6 100644 --- a/src/components/postButton/view/postButtonsForAndroid.js +++ b/src/components/postButton/view/postButtonsForAndroid.js @@ -35,7 +35,6 @@ class PostButtonsForAndroid extends Component { } componentWillReceiveProps(nextProps) { - console.log('nextProps :', nextProps); // For closing sub buttons const { routes, isCollapsePostButtonOpen } = this.props; const nextRouteName = nextProps.routes[0].routes[nextProps.routes[0].routes.length - 1].routeName; diff --git a/src/utils/clipboard.js b/src/utils/clipboard.js index afc2aa7c3..076b411f6 100644 --- a/src/utils/clipboard.js +++ b/src/utils/clipboard.js @@ -7,7 +7,6 @@ const readFromClipboard = async () => { const writeToClipboard = async (text) => { await Clipboard.setString(text); - console.log(text); }; export { writeToClipboard, readFromClipboard };