Skip to content

Commit

Permalink
Merge pull request #484 from harena-lab/development
Browse files Browse the repository at this point in the history
fix (report/bio): separator record
  • Loading branch information
santanche authored Apr 4, 2024
2 parents 3b178f6 + ca1d9d2 commit 5f5093b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adonisjs/public/report/js/report-annotations.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ class ReportManager {
tokens.push([tk, tks, c-1, {}])
tk = ''
tks = -1
if (c < text.length && ReportManager.septoken.includes(text[c]))
tokens.push([text[c], c, c, {}])
}
if (c < text.length && ReportManager.septoken.includes(text[c]))
tokens.push([text[c], c, c, {}])
} else {
if (tks == -1)
tks = c
Expand Down

0 comments on commit 5f5093b

Please sign in to comment.