diff options
Diffstat (limited to 'source/features/clean-repo-filelist-actions.tsx')
-rw-r--r-- | source/features/clean-repo-filelist-actions.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/features/clean-repo-filelist-actions.tsx b/source/features/clean-repo-filelist-actions.tsx index 6daeaf4c..11bc1add 100644 --- a/source/features/clean-repo-filelist-actions.tsx +++ b/source/features/clean-repo-filelist-actions.tsx @@ -1,7 +1,7 @@ import React from 'dom-chef'; import select from 'select-dom'; import * as pageDetect from 'github-url-detection'; -import {PlusIcon, SearchIcon, CodeIcon} from '@primer/octicons-react'; +import {CodeIcon, PlusIcon, SearchIcon} from '@primer/octicons-react'; import observe from '../helpers/selector-observer.js'; import {assertNodeContent, wrap} from '../helpers/dom-utils.js'; @@ -60,6 +60,9 @@ void features.add(import.meta.url, { pageDetect.isRepoTree, pageDetect.isSingleFile, ], + exclude: [ + pageDetect.isRepoFile404, + ], init, }); |