I noticed names are showing up in https://github.com/microsoft/vscode. Could be a gradual rollout.
GitHub's implementation covers more places like issue list:
Our code already does the right thing by filtering out non-usernames, but the comment could be misleading (it only states one case, not the actual motivation):
|
const users = Map.groupBy( |
|
// Exclude nested items https://github.com/refined-github/refined-github/pull/8661 |
|
found.filter(element => element.textContent.trim() === element.href.split('/').pop()), |
|
element => element.textContent.trim(), |
|
); |
I noticed names are showing up in https://github.com/microsoft/vscode. Could be a gradual rollout.
GitHub's implementation covers more places like issue list:
Our code already does the right thing by filtering out non-usernames, but the comment could be misleading (it only states one case, not the actual motivation):
refined-github/source/features/show-names.tsx
Lines 71 to 75 in fe6d945