Merge pull request #43 from ryandkyle/patch-1

Spelling corrections in user facing error message.
This commit is contained in:
Mathias Olausson 2023-04-11 15:59:12 +02:00 коммит произвёл GitHub
Родитель 68c5be8951 d213ddc75e
Коммит b8123650f0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа 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.");
}
}
}