diff --git a/UI/ImportFlow/ImportViewerGui.ts b/UI/ImportFlow/ImportViewerGui.ts index 2c427bd9c..718b63117 100644 --- a/UI/ImportFlow/ImportViewerGui.ts +++ b/UI/ImportFlow/ImportViewerGui.ts @@ -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"