Skip to content

Commit

Permalink
Merge pull request #245 from Pross/fix-html-markup
Browse files Browse the repository at this point in the history
mismatched double quotes
  • Loading branch information
jxmx authored Aug 8, 2024
2 parents e716980 + ff9248d commit c6fdb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ async function createSidebarMenu(){
}
navMenu = navMenu.concat(`
<div class="btn-group">
<a class="btn btn-secondary" role="button" href="${newp} ${onClickSlot}">${n}</a>
<a class="btn btn-secondary" role="button" href="${newp}" ${onClickSlot}>${n}</a>
</div>`);
}
}
Expand Down

0 comments on commit c6fdb6b

Please sign in to comment.