Skip to content

Commit

Permalink
Merge pull request #2118 from jplag/report-viewer/fix/short-html-escaoes
Browse files Browse the repository at this point in the history
Fix html unicode hex escapes being one character short
  • Loading branch information
tsaglam authored Dec 24, 2024
2 parents 108006e + 95bc40a commit 6b0c3ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions report-viewer/src/components/fileDisplaying/CodeLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ function getNextLinePartTillColumn(endCol: number) {
part += props.line[lineIndex.value]
lineIndex.value++
}
part += props.line[lineIndex.value]
lineIndex.value++
colIndex.value++
} else {
Expand Down

0 comments on commit 6b0c3ef

Please sign in to comment.