Spelling correction in user facing error message.

This commit is contained in:
Ryan D Kyle 2020-05-21 14:18:54 -07:00 коммит произвёл GitHub
Родитель 87396bacb5
Коммит d213ddc75e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -670,7 +670,7 @@ export class ProcessImporter {
&& (!sourceField.isIdentity || !targetField.isIdentity)); // with exception if both are identity - known issue we export identity field type = string
if (conflictingFields.length > 0) {
throw new ValidationError(`Field in target Collection conflicts with '${sourceField.name}' field with a diffrent refrence name or type.`);
throw new ValidationError(`Field in target Collection conflicts with '${sourceField.name}' field with a different reference name or type.`);
}
}
}
@ -798,4 +798,4 @@ export class ProcessImporter {
logger.logInfo("Process import completed successfully.");
}
}
}