File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -373,16 +373,6 @@ class FeedComments extends React.Component {
373373 < MediaQuery minWidth = { SCREEN_BREAKPOINT_MD } >
374374 { ( matches ) => ( matches ? (
375375 < div >
376- < div styleName = "comments" >
377- { commentRows }
378- { hasMoreComments &&
379- < div styleName = "load-more" key = "load-more" >
380- < a href = "javascript:" onClick = { handleLoadMoreClick } styleName = "load-btn" >
381- { isLoadingComments ? 'Loading...' : 'load earlier posts' }
382- </ a >
383- </ div >
384- }
385- </ div >
386376 { allowComments &&
387377 < div styleName = "add-comment" key = "add-comment" >
388378 < AddComment
@@ -398,6 +388,16 @@ class FeedComments extends React.Component {
398388 />
399389 </ div >
400390 }
391+ < div styleName = "comments" >
392+ { commentRows }
393+ { hasMoreComments &&
394+ < div styleName = "load-more" key = "load-more" >
395+ < a href = "javascript:" onClick = { handleLoadMoreClick } styleName = "load-btn" >
396+ { isLoadingComments ? 'Loading...' : 'load earlier posts' }
397+ </ a >
398+ </ div >
399+ }
400+ </ div >
401401 </ div >
402402 ) : (
403403 < div >
You can’t perform that action at this time.
0 commit comments