diff options
Diffstat (limited to 'source/features/show-associated-branch-prs-on-fork.tsx')
-rw-r--r-- | source/features/show-associated-branch-prs-on-fork.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/show-associated-branch-prs-on-fork.tsx b/source/features/show-associated-branch-prs-on-fork.tsx index 589e9f27..80a9fedf 100644 --- a/source/features/show-associated-branch-prs-on-fork.tsx +++ b/source/features/show-associated-branch-prs-on-fork.tsx @@ -105,12 +105,12 @@ async function init(): Promise<void> { } void features.add(__filebasename, { + asLongAs: [ + pageDetect.isForkedRepo, + ], include: [ pageDetect.isBranches, ], - exclude: [ - () => !pageDetect.isForkedRepo(), - ], awaitDomReady: false, init: onetime(init), }); |