Skip to content

Commit

Permalink
Add a space
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymcmackin committed Aug 1, 2024
1 parent df6eb6a commit cd69a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/process_downloaded_glossary.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const process_glossary = async () => {
sectionHeaderLinks.forEach((link) => {
link.setAttribute('class', 'hash-link');
const title = link.parentNode.firstChild.textContent;
link.setAttribute('aria-label', 'Direct link to' + title);
link.setAttribute('title', 'Direct link to' + title);
link.setAttribute('aria-label', 'Direct link to ' + title);
link.setAttribute('title', 'Direct link to ' + title);
link.textContent = '';
});

Expand Down

0 comments on commit cd69a55

Please sign in to comment.