Add 'imported' keyword
This commit is contained in:
parent
a391f82ef1
commit
c707f49b05
1 changed files with 1 additions and 1 deletions
|
@ -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 (["imported","erbij","toegevoegd"].some(keyword => lastComment.toLowerCase().indexOf(keyword) >= 0)) {
|
||||
} else if (["imported","erbij","toegevoegd","added"].some(keyword => lastComment.toLowerCase().indexOf(keyword) >= 0)) {
|
||||
status = "imported"
|
||||
} else {
|
||||
status = "closed"
|
||||
|
|
Loading…
Reference in a new issue