Fixes linter issues

This commit is contained in:
freearhey
2025-02-22 13:31:07 +03:00
parent b2e89ba27c
commit f7026af0d4
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')