diff --git a/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 b/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 index 6a5769b0f38..9fcfe691210 100644 --- a/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 +++ b/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 @@ -172,10 +172,7 @@ createWidget('timeline-scrollarea', { topicCurrentPostScrolled(event) { const { postIndex, percent } = event; - // If the post number didn't change keep our scroll position - if (this.state.scrolledPost !== postIndex) { - this.state.percentage = this._percentFor(this.attrs.topic, parseFloat(postIndex) + percent); - } + this.state.percentage = this._percentFor(this.attrs.topic, parseFloat(postIndex) + percent); }, _percentFor(topic, postIndex) {