diff options
author | 2023-08-01 11:06:26 +0200 | |
---|---|---|
committer | 2023-08-01 09:06:26 +0000 | |
commit | 642fae4e8070a4c61ece1784ac880bd2e74945eb (patch) | |
tree | 9c4736de1090eca20a89083b5708d5a734e7ee10 /source/features/select-notifications.tsx | |
parent | 1495e8d9a0180eb1f50dd3b7ed7ac4f9f7e43347 (diff) | |
download | refined-github-642fae4e8070a4c61ece1784ac880bd2e74945eb.tar.gz refined-github-642fae4e8070a4c61ece1784ac880bd2e74945eb.tar.zst refined-github-642fae4e8070a4c61ece1784ac880bd2e74945eb.zip |
Select closed rejected issues in `select-notifications` (#6803)
Diffstat (limited to '')
-rw-r--r-- | source/features/select-notifications.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/select-notifications.tsx b/source/features/select-notifications.tsx index f45670eb..992ca994 100644 --- a/source/features/select-notifications.tsx +++ b/source/features/select-notifications.tsx @@ -23,7 +23,7 @@ const filters = { 'Pull requests': ':is(.octicon-git-pull-request, .octicon-git-pull-request-closed, .octicon-git-pull-request-draft, .octicon-git-merge)', Issues: ':is(.octicon-issue-opened, .octicon-issue-closed)', Open: ':is(.octicon-issue-opened, .octicon-git-pull-request)', - Closed: ':is(.octicon-issue-closed, .octicon-git-pull-request-closed)', + Closed: ':is(.octicon-issue-closed, .octicon-git-pull-request-closed, .octicon-skip)', Draft: '.octicon-git-pull-request-draft', Merged: '.octicon-git-merge', Read: '.notification-read', |