1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-28 23:09:12 +09:00

fix(components/status): Up & down jump due to content being added to the DOM (#3972)

This commit is contained in:
Sorin Davidoi 2017-06-27 18:43:53 +02:00 committed by Eugen Rochko
parent 12e7c81dd8
commit 64d9c016bd

View File

@ -124,7 +124,7 @@ export default class Status extends ImmutablePureComponent {
saveHeight = () => { saveHeight = () => {
if (this.node && this.node.children.length !== 0) { if (this.node && this.node.children.length !== 0) {
this.height = this.node.clientHeight; this.height = this.node.getBoundingClientRect().height;
} }
} }