summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/components/post.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/components/post.jsx')
-rw-r--r--webapp/components/post_view/components/post.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/webapp/components/post_view/components/post.jsx b/webapp/components/post_view/components/post.jsx
index 03075a3fb..8ba3438a0 100644
--- a/webapp/components/post_view/components/post.jsx
+++ b/webapp/components/post_view/components/post.jsx
@@ -250,7 +250,11 @@ export default class Post extends React.Component {
}
return (
- <div>
+ <div
+ ref={(div) => {
+ this.domNode = div;
+ }}
+ >
<div
id={'post_' + post.id}
className={'post ' + sameUserClass + ' ' + compactClass + ' ' + rootUser + ' ' + postType + ' ' + currentUserCss + ' ' + shouldHighlightClass + ' ' + systemMessageClass + ' ' + hideControls + ' ' + dropdownOpenedClass}