diff options
author | 2023-02-19 15:47:14 +0530 | |
---|---|---|
committer | 2023-02-19 18:17:14 +0800 | |
commit | 075284ce129430a8ea9c8f2288ee446bbf128f5c (patch) | |
tree | 6c287c30a2189480b7cf26fb637e5fcc06becd39 | |
parent | 27266f26c37a1ea328f16c32eab5c626db16808e (diff) | |
download | refined-github-075284ce129430a8ea9c8f2288ee446bbf128f5c.tar.gz refined-github-075284ce129430a8ea9c8f2288ee446bbf128f5c.tar.zst refined-github-075284ce129430a8ea9c8f2288ee446bbf128f5c.zip |
Correctly escape tags in the tooltip of `tag-changes-link` (#6335)
-rw-r--r-- | source/features/tag-changes-link.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/tag-changes-link.tsx b/source/features/tag-changes-link.tsx index 273dde78..b8d6f950 100644 --- a/source/features/tag-changes-link.tsx +++ b/source/features/tag-changes-link.tsx @@ -106,7 +106,7 @@ async function init(): Promise<void> { const compareLink = ( <a className="Link--muted tooltipped tooltipped-n" - aria-label={`See commits between ${decodeURIComponent(previousTag)} and ${currentTag}`} + aria-label={`See commits between ${decodeURIComponent(previousTag)} and ${decodeURIComponent(currentTag)}`} href={buildRepoURL(`compare/${previousTag}...${currentTag}`)} > <DiffIcon/> {pageDetect.isEnterprise() ? 'Commits' : <span className="ml-1 wb-break-all">Commits</span>} |