Skip to content

Commit

Permalink
Merge pull request #1788 from jplag/bugfix/text-display
Browse files Browse the repository at this point in the history
Fix cut off code displaying
  • Loading branch information
tsaglam authored May 27, 2024
2 parents 1646516 + 1c7efc7 commit 6d6f7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report-viewer/src/components/fileDisplaying/CodeLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function getNextLinePartTillColumn(endCol: number) {
// display tabs properly
part += ' '
lineIndex.value++
colIndex.value += 8
colIndex.value += 1
} else if (props.line[lineIndex.value] == '&') {
// html escape characters for e.g. <,>,&
while (props.line[lineIndex.value] != ';') {
Expand Down

0 comments on commit 6d6f7e7

Please sign in to comment.