mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-27 18:10:58 +00:00
Fix pinned hashtag columns fully refreshing unprompted (#36497)
This commit is contained in:
parent
869eeecfee
commit
ef53dcfd8c
|
|
@ -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…
Reference in New Issue
Block a user