diff options
author | 2019-08-31 01:26:28 +0700 | |
---|---|---|
committer | 2019-08-31 01:26:28 +0700 | |
commit | 8d0393542bd712d7bb7f93874118dedd07b62c7b (patch) | |
tree | 0a139195466ba76bf5abdd6cbb979e55dcf3322a /source/features/linkify-urls-in-code.tsx | |
parent | 0ca864af6da9cac9f503e4abd0c58b60fbe1abc6 (diff) | |
download | refined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.tar.gz refined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.tar.zst refined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.zip |
Update dependencies and lint (#2391)19.8.31
Diffstat (limited to 'source/features/linkify-urls-in-code.tsx')
-rw-r--r-- | source/features/linkify-urls-in-code.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/linkify-urls-in-code.tsx b/source/features/linkify-urls-in-code.tsx index 066bfef3..9e9ca6a1 100644 --- a/source/features/linkify-urls-in-code.tsx +++ b/source/features/linkify-urls-in-code.tsx @@ -12,7 +12,7 @@ export function linkifyIssuesInDom(element: Element): void { } // Enable native issue title fetch - for (const link of (linkified.children as HTMLCollectionOf<HTMLAnchorElement>)) { + for (const link of linkified.children as HTMLCollectionOf<HTMLAnchorElement>) { const issue = link.href.split('/').pop(); link.setAttribute('class', 'issue-link js-issue-link tooltipped tooltipped-ne'); link.setAttribute('data-error-text', 'Failed to load issue title'); |