diff --git a/webapp/components/invite_member_modal.jsx b/webapp/components/invite_member_modal.jsx index 96a9eb75db..265a421b60 100644 --- a/webapp/components/invite_member_modal.jsx +++ b/webapp/components/invite_member_modal.jsx @@ -286,7 +286,7 @@ class InviteMemberModal extends React.Component { lastNameClass += ' has-error'; } nameFields = ( -
+
this.setState({popoverTarget: e.target, showPopover: !this.state.showPopover})} > diff --git a/webapp/components/post_view/components/post_header.jsx b/webapp/components/post_view/components/post_header.jsx index 6e54e57e73..cc6bab8523 100644 --- a/webapp/components/post_view/components/post_header.jsx +++ b/webapp/components/post_view/components/post_header.jsx @@ -26,6 +26,7 @@ export default class PostHeader extends React.Component { /> ); let botIndicator; + let colon; if (post.props && post.props.from_webhook) { if (post.props.override_username && global.window.mm_config.EnablePostUsernameOverride === 'true') { @@ -50,9 +51,13 @@ export default class PostHeader extends React.Component { ); } + if (this.props.compactDisplay) { + colon = ({':'}); + } + return (