diff --git a/app/components/markdown/markdown_list.js b/app/components/markdown/markdown_list.js index 4ea3fe346..37b572261 100644 --- a/app/components/markdown/markdown_list.js +++ b/app/components/markdown/markdown_list.js @@ -23,7 +23,7 @@ export default class MarkdownList extends PureComponent { }); return ( - + {children} ); diff --git a/app/components/post/post.js b/app/components/post/post.js index 3e8f331de..c0c628b55 100644 --- a/app/components/post/post.js +++ b/app/components/post/post.js @@ -144,14 +144,10 @@ class Post extends PureComponent { const replyBarStyle = [style.replyBar]; - if (this.props.isFirstReply && !this.props.commentedOnPost) { + if (this.props.isFirstReply || this.props.commentedOnPost) { replyBarStyle.push(style.replyBarFirst); } - if (this.props.isLastReply) { - replyBarStyle.push(style.replyBarLast); - } - return ; }; @@ -489,7 +485,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { opacity: 0.5 }, commentedOn: { - color: theme.centerChannelColor, + color: changeOpacity(theme.centerChannelColor, 0.65), lineHeight: 21 }, message: { diff --git a/app/navigation/router.js b/app/navigation/router.js index 74a8c79c6..8112229ce 100644 --- a/app/navigation/router.js +++ b/app/navigation/router.js @@ -6,6 +6,7 @@ import { Dimensions, Easing, InteractionManager, + Keyboard, NavigationExperimental, View } from 'react-native'; @@ -233,6 +234,7 @@ class Router extends Component { }; handleLeftDrawerOpen = () => { + Keyboard.dismiss(); setTimeout(() => { InteractionManager.clearInteractionHandle(this.openLeftHandle); });