diff --git a/dashboard.css b/dashboard.css index 1df1301..4254652 100644 --- a/dashboard.css +++ b/dashboard.css @@ -77,3 +77,26 @@ margin-right: 10px; margin-top: -3px; } + +.commit_comment .commit_comment, +.create .create, +.follow .follow, +.fork .fork, +.git-branch .git-branch, +.gollum .gollum, +.issues_closed .issues_closed, +.issues_comment .issues_comment, +.issues_labeled .issues_labeled, +.issues_opened .issues_opened, +.issues_reopened .issues_reopened, +.issues_merged .issues_merged, +.public .public, +.push .push, +.release .release, +.repo .repo, +.tag .tag, +.team_add .team_add, +.member_add .member_add, +.watch_started .watch_started { + display: block !important; +} diff --git a/dashboard.js b/dashboard.js index dd2de4c..d49272d 100644 --- a/dashboard.js +++ b/dashboard.js @@ -194,6 +194,8 @@ async function addMoreSpecificIdentifiers(list) { for (const eventItem of record.target.querySelectorAll(eventClasses)) { if (!(eventItem instanceof HTMLElement)) continue + const parentEventItem = eventItem.parentElement.closest(eventClasses) + if (parentEventItem) continue // Check if any links are to one of the followed people const fromFollowedPeople = Array.from(eventItem.querySelectorAll('a')).some(function(maybeActor) {