We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c0ced commit 73b23eaCopy full SHA for 73b23ea
src/providers/github.ts
@@ -56,9 +56,9 @@ export default function github(): Provider {
56
icon.classList.contains('octicon-file-directory-open-fill') ||
57
icon.classList.contains('icon-directory'),
58
getIsSubmodule: ({ icon }) =>
59
- icon.getAttribute('aria-label') === 'Submodule',
+ icon.classList.contains('octicon-file-submodule'),
60
getIsSymlink: ({ icon }) =>
61
- icon.getAttribute('aria-label') === 'Symlink Directory',
+ icon.classList.contains('octicon-file-symlink-file'),
62
replaceIcon: (svgEl, newSVG) => {
63
svgEl
64
.getAttributeNames()
0 commit comments