Add synonyms for imported

This commit is contained in:
pietervdvn 2022-04-24 01:35:19 +02:00
parent 78593ac91d
commit 42f49b02ab

View file

@ -339,7 +339,7 @@ class ImportInspector extends VariableUiElement {
status = "already_mapped"
} else if (lastComment.indexOf("invalid") >= 0 || lastComment.indexOf("incorrecto") >= 0) {
status = "invalid"
} else if (lastComment.indexOf("imported") >= 0) {
} else if (["imported","erbij","toegevoegd"].some(keyword => lastComment.indexOf(keyword) >= 0)) {
status = "imported"
} else {
status = "closed"