Improve message for invalid headers in validation

This commit is contained in:
2023-05-16 14:44:21 +02:00
parent b9f83b7dcc
commit cc39f204d1
3 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@ class CsvxmlValidator {
for (let header of headers) {
if (this.fieldList[header] === undefined) {
this.errors.parsing.push("Invalid column " + header + " detected! Please remove this column or use the appropriate name!");
this.errors.parsing.push("Invalid column \"" + header + "\" detected! Please remove this column or use the appropriate name!");
}
}

File diff suppressed because one or more lines are too long