Skip to content

Commit 9e465a7

Browse files
authored
fix parsing error for typescript (#38898)
1 parent 5c34e1c commit 9e465a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/www/site/assets/js/page-nav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ $(document).ready(function() {
105105
var items = $(".page-nav > #TableOfContents li");
106106
var itemTags = $('ul', items).siblings('a');
107107
var img = document.createElement("img");
108-
img.src = "{{ "images/arrow-expandable.svg" | absURL }}";
108+
img.src = '{{ "images/arrow-expandable.svg" | absURL }}';
109109
img.classList="rotate";
110110

111111
$(itemTags).prepend(img);

0 commit comments

Comments
 (0)