We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed4c5b commit b51839dCopy full SHA for b51839d
src/projects/detail/containers/FeedContainer.js
@@ -507,9 +507,11 @@ class FeedView extends React.Component {
507
</MediaQuery>
508
{ feeds.map(renderFeed) }
509
</div>
510
- <MediaQuery maxWidth={768 - 1}>
511
- <ChatButton onClick={this.toggleNewPostMobile} />
512
- </MediaQuery>
+ { !isNewPostMobileOpen &&
+ <MediaQuery maxWidth={768 - 1}>
+ <ChatButton onClick={this.toggleNewPostMobile} />
513
+ </MediaQuery>
514
+ }
515
{ isNewPostMobileOpen &&
516
<NewPostMobile
517
statusTitle="NEW STATUS"
0 commit comments