Fixes linter issues

This commit is contained in:
freearhey 2025-02-22 13:31:07 +03:00
parent c2b120904d
commit fff4386cc5
2 changed files with 10 additions and 7 deletions

View file

@ -29,7 +29,7 @@ export class IssueParser {
const data = new Dictionary()
fields.forEach((field: string) => {
let parsed = field.split(/\r?\n/).filter(Boolean)
const parsed = field.split(/\r?\n/).filter(Boolean)
let _label = parsed.shift()
_label = _label ? _label.trim() : ''
let _value = parsed.join('\r\n')