Add lowercase
This commit is contained in:
parent
42f49b02ab
commit
a391f82ef1
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.indexOf(keyword) >= 0)) {
|
||||
} else if (["imported","erbij","toegevoegd"].some(keyword => lastComment.toLowerCase().indexOf(keyword) >= 0)) {
|
||||
status = "imported"
|
||||
} else {
|
||||
status = "closed"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue