diff options
author | 2021-07-18 18:05:57 +0200 | |
---|---|---|
committer | 2021-07-18 23:05:57 +0700 | |
commit | ac1293a44880c83e3177729719029e26defb4e3e (patch) | |
tree | 21fc35a83c41b6a9ae8d80f0bd18791b75d1e439 /source/features/highlight-collaborators-and-own-conversations.tsx | |
parent | 31a04dd8b43d4fe121bf5a467dbc0cdada568756 (diff) | |
download | refined-github-f866254e9aa3b27d0aa0dd9b221246b537cf9498.tar.gz refined-github-f866254e9aa3b27d0aa0dd9b221246b537cf9498.tar.zst refined-github-f866254e9aa3b27d0aa0dd9b221246b537cf9498.zip |
Fix: Features are not being applied on page change (#4571)21.7.18
Diffstat (limited to 'source/features/highlight-collaborators-and-own-conversations.tsx')
-rw-r--r-- | source/features/highlight-collaborators-and-own-conversations.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/features/highlight-collaborators-and-own-conversations.tsx b/source/features/highlight-collaborators-and-own-conversations.tsx index 8c182197..3d8700ed 100644 --- a/source/features/highlight-collaborators-and-own-conversations.tsx +++ b/source/features/highlight-collaborators-and-own-conversations.tsx @@ -45,10 +45,12 @@ void features.add(__filebasename, { () => select.exists('.blankslate'), ], awaitDomReady: false, + deduplicate: 'has-rgh-inner', init: highlightCollaborators, }, { include: [ pageDetect.isConversationList, ], + deduplicate: 'has-rgh-inner', init: highlightSelf, }); |