more tests

This commit is contained in:
Moritz Jung 2026-07-03 11:38:15 +02:00
parent 84a82f521a
commit 80adf4aff7
10 changed files with 436 additions and 10 deletions

View file

@ -66,7 +66,7 @@ export class PropertyMappingModel {
}
// remapped properties may not have the same name as any original property
for (const property of this.getMappedProperties()) {
const propertiesWithSameTarget = this.properties.filter(x => x.newProperty === property.property);
const propertiesWithSameTarget = this.properties.filter(x => x.property === property.newProperty);
if (propertiesWithSameTarget.length === 0) {
// all good
} else {