Fix pinned hashtag columns fully refreshing unprompted (#36497)

pull/36499/head
Claire 4 weeks ago committed by GitHub
parent 869eeecfee
commit ef53dcfd8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -142,7 +142,7 @@ class HashtagTimeline extends PureComponent {
const { params, local } = this.props;
const { id, tags } = prevProps.params;
if (id !== params.id || !isEqual(tags, params.tags) || !isEqual(local, params.local)) {
if (id !== params.id || !isEqual(tags, params.tags) || !isEqual(local, prevProps.local)) {
this._unload();
this._load();
}

Loading…
Cancel
Save