Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jesterjunk/0463a1d614e1e875256c9e2ce1938216 to your computer and use it in GitHub Desktop.

Select an option

Save jesterjunk/0463a1d614e1e875256c9e2ce1938216 to your computer and use it in GitHub Desktop.
Solution to fix GitHub notifications showing "unread"

Solution to fix GitHub notifications showing "unread"

source:
https://stackoverflow.com/questions/73581385/github-notifications-showing-unread/79774035#79774035    [archive]   
posted by Cees Timmerman    [archive]


The simplest solution    [archive]:

  1. Go to https://github.com/notifications?query=is%3Aunread
  2. Run this in the browser's debug console:
document.querySelector('.js-notifications-mark-all-actions').removeAttribute('hidden');
document.querySelector('.js-notifications-mark-all-actions form[action="/notifications/beta/archive"] button').removeAttribute('disabled');
  1. Press the previously hidden "Done" button.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment