Fix #7113. IfcTester webapp should use uppercase entity names

This commit is contained in:
Dion Moult
2025-10-05 15:32:50 +11:00
parent 2d8383efc6
commit 1b2fa4f994
@@ -33,7 +33,7 @@ export async function preloadAutocompletions() {
);
const allEntities = new Set();
entitySets.forEach(entities => {
entities.forEach(entity => allEntities.add(entity));
entities.forEach(entity => allEntities.add(entity.toUpperCase()));
});
// Data types
@@ -297,4 +297,4 @@ export async function runAudit() {
}
return firstAuditReport;
}
}