Skip to content

Commit

Permalink
fix (report/bio): separator record
Browse files Browse the repository at this point in the history
  • Loading branch information
santanche committed Apr 4, 2024
1 parent dc9ad14 commit ca1d9d2
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 ca1d9d2

Please sign in to comment.